[Vuejs]-Vue.js turning capturing on / off

1👍

Yes with the help of Event Modifiers it’s possible to do it.
You just need to add .capture modifier with your @click. Something like this:

<div @click.capture="myFunction()">Content</div>

For more info read the great documentation of vue itself here

@Jaromanda X has already mentioned it.

👤Piyush

Leave a comment