在模板中使用:<div>{{test}}</div>
computed:{
//完整写法:
test:{
get(){
return xxxx
},
set(){}
},
//简写:
test2(){//直接当成get
return xxxxx
}
}
在模板中使用:<div>{{test}}</div>
computed:{
//完整写法:
test:{
get(){
return xxxx
},
set(){}
},
//简写:
test2(){//直接当成get
return xxxxx
}
}