[Vuejs]-Issue passing array to field

0👍

well i think that you are passing editData to the modal component as a prop, and when you are setting editModal to true, it has not been passed yet,
try using $nextTick for setting editModal to true, it might fix your problem.

this.$nextTick().then(() => {
    this.editModal = true;
});

Leave a comment