我有组件:
<g :title="computeString"></g>
(标准元素)
我使用计算属性来更新它
computeString:{
get: function () {
console.log(this.cage.hitch);
return this.cage.hitch
},
set: function(newValue) {
return newValue;
}
},
但是当我更新计算字段时,标题没有更新。
如何动态更新?
尝试2:
computeString:{
get: function () {
console.log(this.cage.hitch);
return this.cage.hitch
},
set: function(newValue) {
this.cage.hitch = newValue;
}
},
不行。