Files
admin/www/app/layouts/default.vue
T

13 lines
208 B
Vue
Raw Normal View History

<script setup lang="ts">
</script>
<template>
<div class="min-h-screen flex flex-col">
<AppHeader />
2026-07-31 19:02:00 +08:00
<main class="flex-1 pt-64px">
<slot />
</main>
<AppFooter />
</div>
</template>