js 对象数组删除和查找的方法
deleteItem: function (array,item) {
const index = this.array.findIndex(text => text.name === item.name);
this.array.splice(index, 1);
}
亲测vue 中可用
积累小的知识,才能成就大的智慧,希望网上少一些复制多一些原创有用的答案
deleteItem: function (array,item) {
const index = this.array.findIndex(text => text.name === item.name);
this.array.splice(index, 1);
}
亲测vue 中可用