12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!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">
- <box>
- <template v-slot:tem1>
- <h1>hello</h1>
- <h2>world</h2>
- </template>
- <template v-slot:tem2>
- <ul>
- <li>1</li>
- <li>2</li>
- <li>3</li>
- </ul>
- </template>
- </box>
- </div>
- <template id="box-temp">
- <div class="container">
- <slot name="tem1"></slot>
- <div class="box">
- <slot name="tem2"></slot>
- </div>
- </div>
- </template>
-
- <script>
- let app = new Vue({
- el: '#app',
- components: {
- box: {
- template: "#box-temp",
- }
- }
- })
- </script>
- </body>
- </html>
|