- 修改测试环境配置 - 重命名 homeStore为 goodStore - 优化直播房间组件导入路径 - 重构商品列表和详情功能 - 新增 ItemList 组件 -调整首页布局和功能
13 lines
325 B
Vue
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> |