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