美文网首页
vue注意事项

vue注意事项

作者: WWWWWWWWWWWWWWM | 来源:发表于2020-07-06 23:53 被阅读0次

    1.vue不能直接给对象添加键和值;

     this.$set(this.array[this.radio], "hobby", this.val);  //正确
     this.array[0].hobby = '篮球'  //  无法添加属性,错误
    vm.items[indexOfItem] = newValue//错误,应该使用this.$set
    

    相关文章

      网友评论

          本文标题:vue注意事项

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