0👍
✅
You already have the index of the row, so just use vue.delete
(this.$delete) like this-
deleteMember(index, row) {
this.$delete(this.membersList, index);
},
Read more about vue.delete
in the documentation.
Source:stackexchange.com