[Vuejs]-How to isolate click event handler between parent and child elements in vuejs

0👍

✅

You can use stop Event Modifiers to stop the propagation of the event to parent elements.

<!-- the click event's propagation will be stopped -->
<a v-on:click.stop="doThis"></a>

Leave a comment