[Vuejs]-How to get array value of v-model to an array object in script in Vue.Js?

0👍

You need to index your records array.

var object = {
        name: this.records[someIndex].name,
        order: this.records[someIndex].order
      };

Leave a comment