[Vuejs]-Is it possible to pass an event as a prop together with other props in an event handler?

0👍

You can pass both parameters like this

<textarea name="caption" :ref="`textarea-${index}`" keydown.prevent="handler($event, index)"></textarea>

and get them in the function

function handler (event, index) { ... }

Leave a comment