123456789101112131415161718192021222324252627282930 |
- <template>
- <div>
- <h1>具名插槽</h1>
- <hr>
- <hr>
- <hr>
- <Part2>
- <template v-slot:footer>
- 第一个
- </template>
- <template #header>
- 第二个
- </template >
- <template #default>
- 第三个
- </template>
-
- </Part2>
- <hr>
- </div>
- </template>
- <script setup>
- import Part2 from './Part2.vue';
- import { ref, reactive} from 'vue'
- </script>
- <style lang='scss' scoped>
- </style>
|