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)]" />
|
2025-01-13 03:12:11 +00:00
|
|
|
<div class="flex-1 flex flex-col">
|
2025-01-08 05:26:12 +00:00
|
|
|
<slot />
|
|
|
|
</div>
|
2025-01-15 04:00:19 +00:00
|
|
|
<AppFooter />
|
2025-01-08 05:26:12 +00:00
|
|
|
</main>
|
|
|
|
</template>
|
2025-01-13 12:59:25 +00:00
|
|
|
<script setup >
|
2025-01-17 08:56:13 +00:00
|
|
|
import { homeStore } from "@/stores/goods/index.js";
|
2025-01-13 12:59:25 +00:00
|
|
|
const { fullLive } = homeStore()
|
2025-01-10 08:45:18 +00:00
|
|
|
</script>
|