Hanye官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.vue 219B

12345678910111213
  1. <template>
  2. <div class="flex flex-col min-h-screen">
  3. <TheHeader />
  4. <main class="flex-grow">
  5. <slot />
  6. </main>
  7. <TheFooter />
  8. </div>
  9. </template>
  10. <script setup lang="ts">
  11. // 导入组件
  12. </script>