I need to get the element calling my function in Vue. But there is no event. I'm calling the method in my v-for. Here is my HTML code:
<select id="sel_subUse" v-on:change="calculateARV(event, index)">
<option v-for="subUse in filter(event, index)" value="subUse">{{ subUse }}</option>
</select>
I tried using event.target anyways but to no avail. How do I get the calling element?