element-ui中的table可分页多选功能-记住上一页勾选数据、取消多选

1、在el-table中添加

ref="multipleTable"
:row-key="getRowKeys"
2、在el-table-column中添加
<el-table-column type="selection" :reserve-selection="true"></el-table-column>
3、methods中添加
    getRowKeys(row) {
      return row.id
    }
4、取消多选
this.$refs.multipleTable.clearSelection()

element-ui中的table可分页多选功能-记住上一页勾选数据、取消多选

上一篇:Neo4使用操作


下一篇:git的简单cmd使用