liveh5-nuxt/app/layouts/README.md
xingyy 6f67273a9a refactor(store): 重构 home store 并改名为 goods store
- 将 home store 重命名为 goods store,以更准确地反映其用途
- 更新了相关文件中的导入路径和引用
-调整了首页布局和组件以适应新的 goods store 结构
- 新增了 goods store 中的 actionDetails 和 itemList 属性
2025-01-17 16:56:13 +08:00

312 B

Layouts

Vue components in this dir are used as layouts.

By default, default.vue will be used unless an alternative is specified in the route meta.

<script setup lang="ts">
definePageMeta({
  layout: 'goods',
})
</script>

Learn more on https://nuxt.com/docs/guide/directory-structure/layouts