问题描述:
在a-table 中如果不绑定rowKey 则会在控制台报错
解决办法:
如果列表中没有返回唯一值,则可以这么写
:rowKey='record=>record.id'
或者
:rowKey="(record,index)=>{return index}">
标签:index,代码,record,报错,rowKey,table From: https://www.cnblogs.com/qinyuanchun/p/17761458.html
问题描述:
在a-table 中如果不绑定rowKey 则会在控制台报错
解决办法:
如果列表中没有返回唯一值,则可以这么写
:rowKey='record=>record.id'
或者
:rowKey="(record,index)=>{return index}">
标签:index,代码,record,报错,rowKey,table From: https://www.cnblogs.com/qinyuanchun/p/17761458.html