10_component.html 999 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <div id="app">
  11. <my-component></my-component>
  12. <my-com name="zhangsan" age="18">
  13. <ul>
  14. <li>111</li>
  15. <li>222</li>
  16. </ul>
  17. </my-com>
  18. </div>
  19. <div id="app1">
  20. <my-component></my-component>
  21. </div>
  22. <template id="temp1">
  23. <div>
  24. <p>{{name}}</p>
  25. <slot></slot>
  26. <p>{{age}}</p>
  27. <!-- 插槽 -->
  28. </div>
  29. </template>
  30. <script src="vue.js"></script>
  31. <script>
  32. Vue.component('my-component',{
  33. template:'<h2>hahahahaahah</h2>'
  34. })
  35. new Vue({
  36. el: '#app',
  37. data:{
  38. },
  39. components:{
  40. 'my-com':{
  41. template: '#temp1',
  42. props:['name','age']
  43. }
  44. }
  45. })
  46. new Vue({
  47. el:'#app1'
  48. })
  49. </script>
  50. </body>
  51. </html>