04.conputed

methods和conputed区别

1.computed是属性调用,而methods是函数调用
2.computed带有缓存功能,而methods不是

例子(购物车总价)



    
        
        Vue.js computed练习——计算购物车总价
        
        
        
        
    
    
        
{{goods.id}}
{{goods.name}}
{{goods.price}}

总价:¥{{totalPrice}}

你购买了{{settlement}}件商品,需要支付总价为:{{totalPrice}}元
Snipaste_2019-03-15_16-26-46.png

你可能感兴趣的:(04.conputed)