element table 多选时只选择了一些,不显示选择部分的图标

<el-table
    ref="multipleTable"
    :data="tableData"
    :row-key="index"
    tooltip-effect="dark"
    style=" 100%"
    @selection-change="handleSelectionChange">
    <el-table-column
      type="selection"
      width="55">
    </el-table-column>
    <el-table-column
      label="日期"
      width="120">
      <template slot-scope="scope">{{ scope.row.date }}</template>
    </el-table-column>
    <el-table-column
      prop="name"
      label="姓名"
      width="120">
    </el-table-column>
    <el-table-column
      prop="address"
      label="地址"
      show-overflow-tooltip>
    </el-table-column>
  </el-table>

去除:row-key="index",部分选择图标选就恢复正常

原文地址:https://www.cnblogs.com/peter-web/p/12845822.html