zoukankan      html  css  js  c++  java
  • vue之计算属性的setter和getter

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
        <div id="app">
            <h2>{{fullName}}</h2>
        </div>
    
        <script src="../js/vue.js"></script>
        <script>
            const app = new Vue({
            el: '#app',
            data: {
                firstName: 'kobe',
                lastName: 'Bryant'
                },
                computed: {
                   /*fullName: function () {
                        return this.firstName+' '+this.lastName
                   }*/
                    //计算属性一般没有set方法,只读属性
                    fullName: {
                       /* set: function (newValue) {
                            // console.log("------"+newValue);
                            const names = newValue.split(' ');
                            this.firstName = name[0]
                            this.lastName = name[1]
                        },*/
    
                        get: function () {
                            return this.firstName+' '+this.lastName
                        }
                    },
    
                    /*fullName: function () {
                        return this.firstName+' '+this.lastName
                    }*/
    
                }
            })
        </script>
    </body>
    </html>
    

    在这里插入图片描述

    本文来自博客园,作者:兮动人,转载请注明原文链接:https://www.cnblogs.com/xdr630/p/15254864.html

  • 相关阅读:
    禅道学习(一)
    遍历
    php特性
    jsonRPC
    model
    水仙花数(详细2
    水仙花数(详细1
    递归求n 项和
    poj 1651
    nyist 289
  • 原文地址:https://www.cnblogs.com/xdr630/p/15254864.html
Copyright © 2011-2022 走看看