1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="./js/vue.js"></script>
- <style>
- .box{
- width: 100px;
- height: 100px;
- background-color: red;
- margin:10px;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <h1>hello</h1>
- <h1>hello</h1>
- <box v-for="item in 20"></box>
- </div>
- <script>
- let app = new Vue({
- el: '#app',
- data:{
- },
- components:{
- box:{
- template:`<div class="box"></div>`
- }
- }
- })
- </script>
- </body>
- </html>
|