liveh5-nuxt/app/layouts/default.vue

13 lines
249 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">
2025-01-08 05:26:12 +00:00
<slot />
</div>
2025-01-10 08:45:18 +00:00
2025-01-08 05:26:12 +00:00
<AppFooter />
</main>
</template>
2025-01-10 08:45:18 +00:00
<script setup lang="ts">
</script>