条件判断
v-if=arr[index]当arr[index]改变的时候试图不会更新变化,这个时候需要做特殊处理(v-show同理)
vue官方提供方法
this.$set(this.vifValue,i,false)//vm.$set(arr,index,newValue)
死办法
// this.vifValue[i] = false
// let arr = this.vifValue
// this.vifValue = []
// this.vifValue = arr