[Vuejs]-Dynamicly bind v-model without extra array

0👍

You can only bind v-model to one form input.
To bind each input to a v-model, you must create an additional array when adding a new input field

https://v2.vuejs.org/v2/guide/forms.html

Leave a comment