我按照官方demo写了下,结果报错方法toggleRowSelection不存在
相关代码
this.line.siteArr.forEach(item => {
this.siteArr.forEach((val, index) => {
if (item.siteId === val.siteId) {
val.siteType = item.siteType
this.$refs.siteArr.toggleRowSelection(val,true)
}
})
})
Cannot read property 'toggleRowSelection' of undefined
在修改表格数据之后需要使用 $nextTick,则可以在回调中获取更新后的 DOM ;需要改为:this.$nextTick(function () {this.$refs.siteArr.toggleRowSelection(val,true);}.bind(this));