0 votes
in VueJS by

What are the event modifiers provided by vue?

1 Answer

0 votes
by

Normally, javascript provides event.preventDefault() or event.stopPropagation() inside event handlers. You can use methods provided by vue, but these methods are meant for data logic instead of dealing with DOM events. Vue provides below event modifiers for v-on and these modifiers are directive postfixes denoted by a dot.

  1. .stop
  2. .prevent
  3. .capture
  4. .self
  5. .once
  6. .passive

Let's take an example of stop modifier,

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

Related questions

0 votes
asked Oct 9, 2019 in VueJS by Indian
0 votes
asked Oct 9, 2019 in VueJS by Indian
...