vue如何更改数组后触发视图更新

为什么通过方法更改数组后没触发视图更新呢

究其原因是因为数组不是响应式的

怎么触发数组更新后的视图呢,两种方法

// list旧数组 index更改的索引 newValue新值
// 方法一
this.$set(this.list,index,newValue)
// 方法二
this.list.splice(index,1,newValue)

posted on 2021-04-10 14:50  fengxiongmiao  阅读(179)  评论(0编辑  收藏  举报

导航