15_components.html 777 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. <script src="./js/vue.js"></script>
  8. <style>
  9. .box{
  10. width: 100px;
  11. height: 100px;
  12. background-color: red;
  13. margin:10px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div id="app">
  19. <h1>hello</h1>
  20. <h1>hello</h1>
  21. <box v-for="item in 20"></box>
  22. </div>
  23. <script>
  24. let app = new Vue({
  25. el: '#app',
  26. data:{
  27. },
  28. components:{
  29. box:{
  30. template:`<div class="box"></div>`
  31. }
  32. }
  33. })
  34. </script>
  35. </body>
  36. </html>