this.$set(要渲染的对象,对象属性,值)
注意这几个参数一定要对应正确,
this.$set(this.companyList[index], this.companyList[index].children, companyListTarget.children)
其中companyList是一个对象数组,index表示当前要改的对象在数组中的下标
this.companyList[index].children
上面是我在这个对象上加了一个children
companyListTarget.children
上面是更新完的数据,也就是第三个参数,值。