批量选择table 的行数
代码实现:
在<el-table >添加属性 ref = "multipleTable " ,
在<el-table-colum> 添加type属性 type=" selection "
1 |
再通过一下代码就能获取已选择的行的数据;
1 |
this.$refs.multipleTable.selection |
这里的 multipleTable 是上面ref 的值;
from:https://blog.csdn.net/weixin_42517975/article/details/89631128