[Vuejs]-How to use vuejs module on object

2👍

You cannot use v-model for that. If you want to insert a new phone number each time a value is entered, use

 <input type="text" name="" @change="(event) => user.phones.push(event.target.value)">
👤Roy J

Leave a comment