17_vue组件is.html 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. </head>
  8. <body>
  9. <div id="app">
  10. <div>
  11. <div is="box2"></div>
  12. <!-- <box1></box1>
  13. <box2></box2> -->
  14. </div>
  15. </div>
  16. <template id="temp1">
  17. <div>
  18. <h1>组件一</h1>
  19. </div>
  20. </template>
  21. <template id="temp2">
  22. <div>
  23. <h1>组件二</h1>
  24. </div>
  25. </template>
  26. <script src="./js/vue.js"></script>
  27. <script>
  28. new Vue({
  29. el: '#app',
  30. components:{
  31. "box1":{
  32. template:"#temp1"
  33. },
  34. "box2":{
  35. template:"#temp2"
  36. }
  37. }
  38. })
  39. </script>
  40. </body>
  41. </html>