el-table设置默认选中

 
// 初始设置选中
toggleSelection(rows) {
   if (rows) {
     rows.forEach(row => {
        this.$refs.table.toggleRowSelection(row);
     });
   } 
}
rows传入选中项的集合
 

posted on 2020-12-09 13:48  html123  阅读(5483)  评论(0编辑  收藏  举报