赞
踩
在页面刚打开就默认选中指定项。
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)
- })
- })
- },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。