究其原因是因为数组不是响应式的
// list旧数组 index更改的索引 newValue新值 // 方法一 this.$set(this.list,index,newValue) // 方法二 this.list.splice(index,1,newValue)