【修复日常bug】element-plus框架table组件toggleRowSelection方法设置无效
版本vue版本:3.0.7element-plus:1.0.2问题概述element-plus框架的el-tables组件toggleRowSelection函数设置选中值无效;//设置无效this.$refs.multipleTable.toggleRowSelection(this.popup_config.table.list[b],true);解决思路初次用setTimeout测试2000
·
版本
vue版本:3.0.7
element-plus:1.0.2
问题概述
element-plus框架的el-table组件toggleRowSelection函数设置选中值无效;
//设置无效
this.$refs.multipleTable.toggleRowSelection(this.popup_config.table.list[b],true);
解决思路
初次用setTimeout测试2000毫秒延迟生效了,断定是el-table未渲染完成导致;
故:加上$nextTick方法,dom更新完成后会进入回调;
//dom更新完才执行nextTick回调
this.$nextTick(()=>{
this.$refs.multipleTable.toggleRowSelection(this.popup_config.table.list[b],true);
})
更多推荐
已为社区贡献3条内容
所有评论(0)