ant design vue 的table 不加key的话会报下面警告:
antd-vue table 报错
<a-table
:columns="rechargePlanColumns"
:data-source="rechargePlanList"
/>
翻译之后的意思是:表中的每个记录都应该有一个唯一的' key ' prop,或者将' rowKey '设置为唯一的主键。
找一个row中惟一的值绑上去j就没有这个警告了,例如id
<a-table
:columns="rechargePlanColumns"
:data-source="rechargePlanList"
/>
网友评论