15-计算属性

image.png
data:状态
computed:注重结果
1.逻辑计算,防止模板过重,有缓存
2.监听:依赖修改,get方法,必须有return
methods:
1.点击事件处理函数,return不是必须的
2.函数表达式的逻辑处理,没有缓存
watch:
监听,观察,注重过程,不用return调用




    
    
    Document
    



    
{{mycomputedname}} {{mymethodsname()}}

计算属性-有缓存

{{mycomputedname}}
{{mycomputedname}}
{{mycomputedname}}

方法-表达式

{{mymethodsname()}}
{{mymethodsname()}}
{{mymethodsname()}}

计算属性可以被赋值

你可能感兴趣的:(15-计算属性)