vue elementui table 切换页面后select选中数据被清空问题


  ref="tableFile" v-loading="createLoading"  :row-key="getRowKeys" :data="createDetailList" @selection-change="handleSelectionCreateChange">
   type="selection"  width="35" align="left"  :reserve-selection="true" :show-overflow-tooltip="true"/>

ts:

getRowKeys(row) {
          return row.id;//行唯一标识
      },

添加以上红色字体标注代码,切换table 也不会清空select数据了,但是点击查询、重置的时候需要清空已选中数据:this.$refs.tableFile.clearSelection();

vue