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>
Source:stackexchange.com
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>