vue.js計算屬性(computed)

_code小學生發表於2018-03-24
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <!-- Vue.js -->
    <script src="https://unpkg.com/vue/dist/vue.min.js"></script>
</head>
<body>
<div>
    <!--# 如表示式如果過長,或邏輯更為複雜時,就會變得臃腫甚至難以閱讀和維護 #-->
    {{ text.split(',').reverse().join(',') }}
    <!--# 所以在遇到複雜的邏輯時應該使用計算機屬性 #-->
</div>

<div id="app">
    {{ reversedText }}
</div>
</body>
</html>
<script>
    var app = new Vue({
        el:'#app',
        data:{
            text:'123,456'
        },
        //所有的計算屬性都以函式的形式寫在vue例項內的computed選項內,最終返回計算的結果
        computed:{
            reversedText:function () {
                //這裡的this指向的是當前的vue例項
                return this.text.split(',').reverse().join(',');
            }
        }
    })
</script>

相關文章