VUE3(六)计算属性

计算属性是模板对象中的computed,computed是一个对象,里面定义了各种计算属性的方法(getter和setter),可以直接如同变量一般使用。好处是代码简洁且有缓存。

    <template id="my-app">
        <h2>{{fullName}}</h2>
        <h2>{{result}}</h2>
        <h2>{{reverseMessage}}</h2>
    </template>
    <script src="../js/vue.js"></script>
    <script>
        const app={
            template:"#my-app",
            data(){
                return{
                    firstName: "kobe",
                    lastName: "bryant",
                    score: 80,
                    message: "hello world"
                }
            },
            computed: {
                // 定义了一个计算属性叫fullname
                fullName(){
                    return this.firstName + ' ' + this.lastName;
                },
                result(){
                    return this.score >= 60 ? "及格" : "不及格";
                },
                reverseMessage(){
                    return this.message.split(' ').reverse().join(' ');
                }
            }
        };
        Vue.createApp(app).mount("#app");
    </script>

发表评论