Files
OCS_service/app/layouts/default.vue
T
2026-05-22 16:27:35 +08:00

16 lines
485 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- 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>