为什么通过方法更改数组后没触发视图更新呢
究其原因是因为数组不是响应式的
怎么触发数组更新后的视图呢,两种方法
// list旧数组 index更改的索引 newValue新值
// 方法一
this.$set(this.list,index,newValue)
// 方法二
this.list.splice(index,1,newValue)
究其原因是因为数组不是响应式的
// list旧数组 index更改的索引 newValue新值
// 方法一
this.$set(this.list,index,newValue)
// 方法二
this.list.splice(index,1,newValue)