[Vuejs]-How to focus on an input in a v-for in vuejs

0👍

Because you use v-model ( which is two-way binding ) to bind all your inputs to a single value which is ( content ) so if you change the input value it will reflect all other inputs, so you need to handle it with an array.

Leave a comment