VUE学习——计算属性

<template>
    <p>{{ name.length>0 ? true : false }}</p>
    <p>{{ commputedValue }}</p>
</template>
<script>
    export default{
        data(){
            return{
                name:"vue"
            }
        },
        methods: {
            
        },
        computed:{
            commputedValue(){
                return this.name.length>0 ? true : false;
            }
        }
        
    }
</script>

使用computed对象。
methods可实现相同的结果。
VUE学习——计算属性_第1张图片

你可能感兴趣的:(VUE,vue.js,学习,javascript)