一.需求
在页面刚打开就默认选中指定项。
二.方法Table Methods
toggleRowSelection | 用于多选表格,切换某一行的选中状态,如果使用了第二个参数,则是设置这一行选中与否(selected 为 true 则选中) | row, selected |
详细请看elementui官网https://element.eleme.io/#/zh-CN/component/table
三.代码
mounted () {// multipleSelection 想选中的数据 tableData表格数据this.$nextTick(() => {this.multipleSelection.forEach(row => {this.$refs.multipleTable.toggleRowSelection(this.tableData.find(item => {return row.date == item.date;}), true)})})},