Vue 中 computed计算属性

computed计算属性

    作用:封装了一组对于数据的处理,求得一个结果

    可以多次重复调用,有缓存,性能高

methods方法

    作用:封装了某一个功能,一个功能对应一个方法,调用以处理业务逻辑

computed 计算属性的完整写法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        input{
            width: 30px;
        }
    </style>
</head>
<body>
    <div id="app">
        姓: <input type="text" v-model="firstName">
        名: <input type="text" v-model="lastName">
        <span>{
   
   {fullName}}</span>

        <button @click="changeName">改名卡</button>
    </div>
    <script src="https://cdn.staticfile.net/vue/2.7.0/vue.min.js"></script>

    <script>
        const app = new Vue({
            el: '#app',
            data: {
                firstName: '刘',
                lastName: '备',
            },
            methods: {
                changeName(){
                    this.fullName = '李四'
                }
            },
            computed: {
                // 完整写法 get set
                fullName: {
                    // 获取数据
                    // 等价于
                    // fullName:(){
                    //     return this.firstName + this.lastName
                    // },
                    get (){
                        return this.firstName + this.lastName

                    },
                    // 设置、修改数据 
                    set(value) {
                        this.firstName = value.slice(0,1)
                        this.lastName = value.slice(1)
                    }
                }
            }
        })
    </script>
</body>
</html>

如果没有设置和修改的功能直接简写为

   fullName:(){
            return this.firstName + this.lastName
   },

猜你喜欢

转载自blog.csdn.net/qq_55111117/article/details/140848900