ElementUI--表格toggleRowSelection无法选中
问题:
toggleRowSelection(i,true)无法选中
解决方法
//使用 this.$nextTick()
this.$nextTick(()=>{
this.$refs.multipleSelectionTable.toggleRowSelection(row,true);
})
问题:
//使用 this.$nextTick()
this.$nextTick(()=>{
this.$refs.multipleSelectionTable.toggleRowSelection(row,true);
})