- 将 home store 重命名为 goods store,以更准确地反映其用途 - 更新了相关文件中的导入路径和引用 -调整了首页布局和组件以适应新的 goods store 结构 - 新增了 goods store 中的 actionDetails 和 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 { homeStore } from "@/stores/goods/index.js";
|
|
const { fullLive } = homeStore()
|
|
</script> |