当前位置: 代码迷 >> 综合 >> Ant Design of Vue 之 rowKey
  详细解决方案

Ant Design of Vue 之 rowKey

热度:47   发布时间:2023-12-25 04:00:17.0
<a-table  :columns="columns":rowKey='record=>record.id'> <!--id为 tableData 中的一个属性-->
</a-table>
<a-table   :columns="columns":rowKey="(record,index)=>{return index}"> <!--record 为每一天数据, index 索引--></a-table>

 

  相关解决方案