vue elementui table 切换页面后select选中数据被清空问题
<el-table ref="tableFile" v-loading="createLoading" :row-key="getRowKeys" :data="createDetailList" @selection-change="handleSelectionCreateChange"> <el-table-column type="selection" width="35" align="left" :reserve-selection="true" :show-overflow-tooltip="true"/> </el-table>
ts:
getRowKeys(row) { return row.id;//行唯一标识 },
添加以上红色字体标注代码,切换table 也不会清空select数据了,但是点击查询、重置的时候需要清空已选中数据:this.$refs.tableFile.clearSelection();