liveh5-nuxt/app/layouts/default.vue

15 lines
366 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">
<keep-alive>
<slot />
</keep-alive>
2025-01-08 05:26:12 +00:00
</div>
<AppFooter />
2025-01-08 05:26:12 +00:00
</main>
</template>
<script setup >
import { goodStore } from "@/stores/goods/index.js";
const { fullLive } = goodStore()
2025-01-10 08:45:18 +00:00
</script>