12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!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;
- }
- .box2 {
- width: 100px;
- height: 100px;
- background-color: blue;
- margin: 10px;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <box></box>
- </div>
- <script>
- let app = new Vue({
- el: '#app',
- data: {
- },
- components: {
- box: {
- template: `
- <div class="container">
- <div class="box">
- <span>hello world</span>
- </div>
- <div class="box2"></div>
- </div>
- `
- }
- }
- })
- </script>
- </body>
- </html>
|