2👍
✅
Because tag is an ‘Alias’ of the Object you are using, we cannot reference it by that alias.
We can however, rebind it to the original object, using the index from v-for.
This will bind it for you.
<v-text-field v-model="obj.tags[index]">
</v-text-field>
Source:stackexchange.com