美文网首页
warning.js?2149:7 Warning: [antd

warning.js?2149:7 Warning: [antd

作者: robotlee8 | 来源:发表于2020-06-30 19:41 被阅读0次

    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"
            />
    
    

    相关文章

      网友评论

          本文标题:warning.js?2149:7 Warning: [antd

          本文链接:https://www.haomeiwen.com/subject/qyqfqktx.html