data(){
return{
child:['x通道','y通道','z通道'],
}
},
methods中用set
this.$set(this.child,this.index,value)
this.child为更新对象,this.index为对象下标值,value是更新后this.index对应的值
此处更新对象为数组,若是对象其中this.child 为变量名称, this.index为对象的key,value为name对应的值。
data(){
return{
child:['x通道','y通道','z通道'],
}
},
methods中用set
this.$set(this.child,this.index,value)
this.child为更新对象,this.index为对象下标值,value是更新后this.index对应的值
此处更新对象为数组,若是对象其中this.child 为变量名称, this.index为对象的key,value为name对应的值。