1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="./js/vue.js"></script>
- </head>
- <body>
- <div id="app">
- <com1></com1>
- <!-- <com2></com2> -->
- </div>
- <!-- 外层组件 -->
- <template id="com1">
- <div class="container">
- <h1>hello</h1>
- <com2></com2>
- </div>
- </template>
- <!-- 内层组件 -->
- <template id="com2">
- <div class="container">
- <h2>world</h2>
- </div>
- </template>
- <script>
- let app = new Vue({
- el: '#app',
- components:{
- com1:{
- template:'#com1',
- components:{
- com2:{
- template:'#com2'
- }
- }
- }
- }
- })
- </script>
- </body>
- </html>
|