首先,computed的使用方法:
computed:{ b:function(){ //默认调用get return 值 }}
完整用法:
computed:{ b:{ get: //默认的写法 set: //设置值的 }}
具体实例:
//htmla=> { {a}} b=> { {b}}
结果:点击页面时,
a=>101
b=>102
//htmla=> { {a}} b=> { {b}}
结果:点击页面时,
a=>10
b=>12
*和data的区别是 computed 放一些业务逻辑的代码,切记放return