[Vuejs]-How can I track which item(s) in a VueJS array have been mutated by the user?

0👍

Maybe I’ve misunderstood your problem, but can’t you just use @change ?

<td><input type="text" class="form-control" v-model="item.ID" @change="mutated(index)"></td>

You could also use @input

👤jenseo

Leave a comment