在使用Antd时,table组件报错如下:
解决方法:
增加rowKey属性,属性值为数据源里的真实字段。
<a-table :columns="fileListColumns" :data-source="fileListData" rowKey="outputFilePath">
即可。