You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.
Not able to pass in @click or v-on:click to work within the Vue.js instance.. has anyone figured it out? this is what I have tried: <feather-info v-on:click="showInfo()" class="w-4 h-4 text-grey-light align-middle" stroke="currentColor" data-dest="infoDialogText" @click:prevent="showInfo" title="Information"></feather-info>
Got this to work... but seems to be just a work around: <feather-info v-bind:onclick="'window.vueapp.showInfo(event)'" class="w-4 h-4 text-grey-light align-middle" stroke="currentColor" data-dest="infoDialogText" title="Information"></feather-info>
Any ideas of why the on:click doesn't work??
The text was updated successfully, but these errors were encountered:
Not able to pass in @click or v-on:click to work within the Vue.js instance.. has anyone figured it out? this is what I have tried:
<feather-info
v-on:click="showInfo()" class="w-4 h-4 text-grey-light align-middle" stroke="currentColor" data-dest="infoDialogText" @click:prevent="showInfo"title="Information"></feather-info>
Got this to work... but seems to be just a work around:
<feather-info
v-bind:onclick="'window.vueapp.showInfo(event)'" class="w-4 h-4 text-grey-light align-middle" stroke="currentColor" data-dest="infoDialogText"title="Information"></feather-info>
Any ideas of why the on:click doesn't work??
The text was updated successfully, but these errors were encountered: