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) { ... }
- [Vuejs]-Vue dynamic import is being imported even if it is never used
- [Vuejs]-VueJS & TS : Error on hiding a component on specific page
Source:stackexchange.com