Vue event handling
trap user input events with v-on:… directives like:
v-on:keyup.enter=“myCoolEnterHandler”
stop or change event bubbling with event modifiers like:
.stop, .prevent, .capture, .self, .once, .passive, e.g.
yo
trap user input events with v-on:… directives like:
v-on:keyup.enter=“myCoolEnterHandler”
stop or change event bubbling with event modifiers like:
.stop, .prevent, .capture, .self, .once, .passive, e.g.
yo