2019-03-13

5 计算属性


164940.png

样例代码

原始字符串: {{ message }}

计算后反转字符串: {{ reversedMessage }}

computed vs methods

3165133.png

实例1——购物车价格计算



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

总价:¥{{totalPrice}}

你购买了{{settlement}}件商品,需要支付总价为:{{totalPrice}}元
image.png

image.png

实例2——搜索页面



    
        
        Vue.js computed和过滤的练习-搜索页面的实时响应
        
        
        
    
    
        
        
    

image.png

你可能感兴趣的:(2019-03-13)