zoukankan      html  css  js  c++  java
  • 组件的重复调用

    ```

    <body>
    <div id='app'>
    <grand></grand>
    </div>
    </body>

    <script>
    let uncle={
    template:'<h4>叔叔</h4>'
    };
    let son={
    template:'<h3>儿子<uncle></uncle></h3>',
    components:{
    uncle
    }
    };
    let parent={
    template:'<h2>这是一个父亲<son></son></h2>',
    components:{son}
    };
    let grandP={
    template:'<h1>爷爷<parent></parent></h1>',
    components:{
    parent
    }
    };
    let vm = new Vue({
    el: '#app',
    data: {},
    methods: {},
    components:{
    grand:grandP
    }
    })
    /*
    * 理论上 组件可以无限级调用
    * */
    </script>

    ```

  • 相关阅读:
    HIHO线段树(成段)
    HIHO 线段树(单点)
    POJ 3468
    HDU 1754
    HDU 1698
    HDU 5119
    HDU 1394
    HDU 1166
    DZY Loves Chessboard
    谷歌Cookies无法写入
  • 原文地址:https://www.cnblogs.com/xieting123/p/9655993.html
Copyright © 2011-2022 走看看