由于 JavaScript 的限制,Vue 不能检测对象属性的添加或删除 可以使用 Vue.set(object, key, value) 方法向嵌套对象添加响应式属性 数组 this.$set(arr,index,val) 使用 Object.assign() 或 _.extend() 方法来添加属性 this.someObject = Object.assign({}, this.someObject, { a: 1, b: 2 }) 终于知道原因了,我获取的数据对象有a,b,c 属性,但我…