1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div id="app">
- <my-component></my-component>
- <my-com name="zhangsan" age="18">
- <ul>
- <li>111</li>
- <li>222</li>
- </ul>
- </my-com>
- </div>
- <div id="app1">
- <my-component></my-component>
- </div>
- <template id="temp1">
- <div>
-
- <p>{{name}}</p>
- <slot></slot>
- <p>{{age}}</p>
- <!-- 插槽 -->
-
- </div>
- </template>
- <script src="vue.js"></script>
- <script>
- Vue.component('my-component',{
- template:'<h2>hahahahaahah</h2>'
- })
- new Vue({
- el: '#app',
- data:{
- },
- components:{
- 'my-com':{
- template: '#temp1',
- props:['name','age']
- }
- }
- })
- new Vue({
- el:'#app1'
- })
- </script>
- </body>
- </html>
|