vue-element-admin 回显数据异常 报错 toggleRowSelection‘ of undefined

时间:2024-03-13 12:20:35

在开发项目时,有个弹出多选框,需求是打开多选框时,要求已选择的选项打钩,提示已经选择,用了this.$refs.multipleTable.toggleRowSelection(this.tableData[j]) this.$refs.multipleTable.clearSelection() 后第一次打开弹出框时报错,第二次打开没问题,数据也正常显示vue-element-admin 回显数据异常 报错 toggleRowSelection‘ of undefined
Error in nextTick: “TypeError: Cannot read property ‘clearSelection’ of undefined”
Cannot read property ‘clearSelection’ of undefined
然后加了个this.$nextTick(function () {})在外边,问题解决。