liveh5-nuxt/app/layouts/default.vue

11 lines
239 B
Vue
Raw Normal View History

2025-01-08 05:26:12 +00:00
<template>
<main class="flex flex-col min-h-svh">
2025-01-10 08:45:18 +00:00
<AppHeader class="h-[var(--van-nav-bar-height)]" />
<div class="flex-1 flex flex-col">
<slot />
2025-01-08 05:26:12 +00:00
</div>
<AppFooter />
2025-01-08 05:26:12 +00:00
</main>
</template>
<script setup >
2025-01-10 08:45:18 +00:00
</script>