码迷,mamicode.com
首页 > 移动开发 > 详细

uni-app 计算属性 computed

时间:2020-01-12 20:18:21      阅读:3351      评论:0      收藏:0      [点我收藏+]

标签:返回值   weight   app   ext   ret   必须   属性   cti   html   

功能:=》大于1000用kg表示 小于1000,用g表示

    计算属性  计算属性必须是有一个返回值的哦  
    在html写被计算的值
    在computed中去直接调用哈

        <view>
            <text>{{jisuweight}}</text>
        </view>
        
        data() {
            return {
                weight:1110,
            }
        },
        computed:{
            jisuweight(){
                return this.weight>1000 ? (this.weight/1000)+"kg" : this.weight;
            }
        },

uni-app 计算属性 computed

标签:返回值   weight   app   ext   ret   必须   属性   cti   html   

原文地址:https://www.cnblogs.com/IwishIcould/p/12184430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!