表格删除选中的行实现,这里利用到了 __ob__ 对象。vue每个双向绑定的数据都有__ob__
del() { [...this.multipleSelection.map((n) => n.__ob__.dep.id)].forEach( (n) => { this.gridData.some((item, index) => { if (item.__ob__.dep.id == n) { this.gridData.splice(index, 1); return true; } else return false; }); } ); },