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
Source:stackexchange.com