其他分享
首页 > 其他分享> > element-ui表格功能实现(删除选中)

element-ui表格功能实现(删除选中)

作者:互联网

表格删除选中的行实现,这里利用到了 __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;
          });
        }
      );
    },

 

标签:__,index,表格,__.,ob,element,item,ui,id
来源: https://www.cnblogs.com/lv77/p/14692170.html