el-table 可多选的表格 如何默认显示选中状态

关键点: n e x t T i c k 方 法 及 t h i s . nextTick方法 及 this. nextTickthis.refs.multipleTable.toggleRowSelection(item)方法

① 如果不使用$nextTick,数据加载完成后,html页面虚拟DOM树还未构建,因此就会报错

Error in created hook: "TypeError: Cannot read property 'toggleRowSelection' of undefined"

② toggleRowSelection方法则用于多选表格,切换某一行的选中状态,如果使用了第二个参数,则是设置这一行选中与否(selected 为 true 则选中)
参考案例:
el-table 可多选的表格 如何默认显示选中状态_第1张图片

你可能感兴趣的:(前端,前端)