0👍
I managed to get it to work. v-bind: or ":" shouldn’t be used on v-model. i added as index because n starts from 1 instead of 0.
<div v-for="(n,i) in number" v-bind:key="n">
<input ref= "inputs" :id="'str' + n" v-model="inputValues[i]" />
</div>
- [Vuejs]-How can we stop vuetify 3 v-combobox from adding new items if the validation checks fail?
- [Vuejs]-How get response in axios when api is steam like SSE (Server-Send Events)
Source:stackexchange.com