vue.js計算屬性用法(computed)技巧,依賴其他vue例項的資料

_code小學生發表於2018-03-25
<!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 id="app1"></div>
<div id="app2">
    {{ reversedText }}
</div>
</body>
</html>
<script>
    var app1 = new Vue({
        el:'#app1',
        data:{
            text:'123,456'
        }
    });

    var app2 = new Vue({
        el:'#app2',
        computed:{
            reversedText:function () {
                //這裡依賴的是app1的資料text
                return app1.text.split(',').reverse().join(',');
            }
        }
    });
    //這裡我們建立了兩個vue例項app1和app2,在app2的計算屬性reversedText中,依賴的是app1的資料text,所以當text變化時,例項app2的計算屬性也會變化這樣的用法尤其是在多人協同開發時很常用,因為你寫的一個元件所用得到的資料需要依賴他人的元件提供
</script>

相關文章