I want to use @click event in option. on vue.
here's my vue code;
<div
v-for="index in fields"
:key="index"
>
<select>
<option @click="myFunction(index + 1, user)" v-for="user in filteredUsers"
:key="user"
:value="user">
{{ user?.fullName }}
</option>
</select>
</div>
it works on Mozilla but not works on chrome or the other browsers. i try to use @change method with select but i can't send "value" as an object.
How can i fix it?