18.组件.html 795 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. </style>
  9. </head>
  10. <body>
  11. <div id="app">
  12. <my-com></my-com>
  13. <my></my>
  14. </div>
  15. <script src="./vue.js"> </script>
  16. <script>
  17. // 全局组件
  18. Vue.component("my-com",{
  19. template:`<div><h1>你好</h1><p>哈哈</p></div>`
  20. })
  21. // 局部组件
  22. const aaa = Vue.extend({
  23. template:`<div><h1>你好1</h1><p>哈哈1</p></div>`
  24. })
  25. var vm = new Vue({
  26. el: "#app",
  27. components:{
  28. my:aaa
  29. }
  30. })
  31. </script>
  32. </body>
  33. </html>