[Vuejs]-How do you push an object into another object when the data within it gets changed?

0👍

If I have understood correctly the selected rows correspond to errors.done ? In this case you can just edit the onRowSelected method like this :

onRowSelected(fields){
  this.selectedRows.push(fields)
},

Then replace this.errors by this.selectedRows in you’re submit method ?

Leave a comment