feat: 完成整体内容开发

This commit is contained in:
2026-05-22 16:27:35 +08:00
parent 5e05bf4f63
commit d3cb786edb
72 changed files with 2410 additions and 29 deletions
+15
View File
@@ -0,0 +1,15 @@
<!-- app/layouts/default.vue - 页面外壳负责组合导航内容区和页脚 -->
<script lang="ts" setup>
import AppFooter from "@/components/layout/AppFooter.vue";
import AppHeader from "@/components/layout/AppHeader.vue";
</script>
<template>
<div class="min-h-screen bg-background text-foreground">
<AppHeader />
<main class="mx-auto min-h-[calc(100vh-8rem)] w-full max-w-7xl px-4 py-6 md:px-6">
<slot />
</main>
<AppFooter />
</div>
</template>