Is it possible in VueJS to have a default click event on a custom component?
E.g. we have built a component called editable. Now on click, we always want it to fire the same function, no matter where we call that component.
<editable @click="doSomething" ...></editable>
Can I define that somewhere in the JS side?