vue.js中,computed计算属性是否只有一个getter和一个setter
发布网友
发布时间:2022-04-30 20:45
我来回答
共2个回答
热心网友
时间:2022-04-20 11:19
Vue中computed就是 实时计算 使用。 Vue检测到数据发生变动时就会执行对相应数据有引用的。
vue.js getter是获取值的方法。
vue.js setter是设置值的方法。
热心网友
时间:2022-04-20 12:37
computed:{
someProperty:{
get:function(){
return this.property;
}
set:function(newValue){
// 其他逻辑
this.property=newValue;
}
}
}