How to make vuejs respond faster when using v-model on large data sets
问题 The application i'm working on renders an array of persons and their children. There are about 600 persons in the array. I am displaying the person name and the names of each person's children in text inputs so that they can be edited. I use a V-model for two way binding so I can easily save the edits. <tr v-for="person in persons"> <td> <input type="text" v-model="person.name" /> </td> <td v-for="child in person.children"> <input type="text" v-model="child.name" /> </td> </tr> The problem is