0👍
✅
You can do something like
v-model="data[dynamic_index]"
or you can use
<input :value="some_dynamic_variable" @input="$emit('input', $event.target.value)>
Source:stackexchange.com