未初始化property定义的字段,重新设置双向绑定问题
错误例子
//初始化定义property
data() {
return {
model: {}
};
}
.........
.........
//后面更新property。 用这种方式icon属性是,不会有双向绑定。
afterUpload(response) {
this.model.icon = response.url;
}
对于已经创建的实例,Vue 不允许动态添加根级别的响应式 property。但是,可以使用 Vue.set(object, propertyName, value) 方法向嵌套对象添加响应式 property。
afterUpload(response) {
this.$set(this.model,'icon',response.url)
}