liveh5-nuxt/app/layouts/default.vue
xingyy bad45f8d82 refactor(goods): 重构商品相关功能
- 修改测试环境配置
- 重命名 homeStore为 goodStore
- 优化直播房间组件导入路径
- 重构商品列表和详情功能
- 新增 ItemList 组件
-调整首页布局和功能
2025-01-20 16:17:49 +08:00

13 lines
325 B
Vue

<template>
<main class="flex flex-col min-h-svh">
<AppHeader class="h-[var(--van-nav-bar-height)]" />
<div class="flex-1 flex flex-col">
<slot />
</div>
<AppFooter />
</main>
</template>
<script setup >
import { goodStore } from "@/stores/goods/index.js";
const { fullLive } = goodStore()
</script>