美文网首页
Duplicate keys detected: ''. Thi

Duplicate keys detected: ''. Thi

作者: 李寻欢_ | 来源:发表于2019-11-15 10:11 被阅读0次

    原因: 在用v-for进行循环时,:key值不唯一,有重复的内容,故报错.
    解决方法:

    v-for="item in options" :key="item.index+ '-label'"
    
    data(){
      return {
      options: [
            {
              value: "",
              label: "全部"
            },
            {
              value: "1",
              label: "支付宝"
            },
            {
              value: "",
              label: "微信"
            }
          ]
    }
    }
    

    相关文章

      网友评论

          本文标题:Duplicate keys detected: ''. Thi

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