I pass a parameter in v-on:input directives. If I don\'t pass it, I can access the event in the method. Is there any way I can still access the event when passi
Evan You himself recommended this technique in one post on Vue forum. In general some events may emit more than one argument. Also as documentation states internal variable $event is meant for passing original DOM event.