数组:
 this.$set(Array,index, newValue)

对象:
this.$set(Object, key, value)


Vue.set(this.food,'count',1) //就是给this.food里面添加一个count的属性,并且赋值为1

 

相关文章: