ElementUI--表格toggleRowSelection无法选中

问题:

toggleRowSelection(i,true)无法选中
 
解决方法
//使用 this.$nextTick()

this.$nextTick(()=>{
   this.$refs.multipleSelectionTable.toggleRowSelection(row,true);
})

  

原文地址:https://www.cnblogs.com/lucky-jun/p/14781625.html