帮助了 AmazingCounters.com 位小伙伴

vue computed计算属性demo,

 

 

复制代码
<template>
    <view>
        
        <view class="font">
            {{ ZHweight }} //直接调用计算函数中定义的函数名。
        </view>
        
    </view>
</template>

<script>
    export default {
        data() {
            return {
                //体重
                weight:1500
            }
        },
        computed:{
            ZHweight:function(){
                return this.weight>1000 ? (this.weight/1000)+'kg':this.weight+'g';
            }
        },
        methods:{
            
        }
    }
</script>

<style>
.font{
    font-size: 50upx;
}
</style>
复制代码

 

posted on   云的旋律  阅读(150)  评论(0编辑  收藏  举报

努力加载评论中...

导航

统计

前端攻城狮分享群
点击右上角即可分享
微信分享提示