- 将 home store 重命名为 goods store,以更准确地反映其用途 - 更新了相关文件中的导入路径和引用 -调整了首页布局和组件以适应新的 goods store 结构 - 新增了 goods store 中的 actionDetails 和 itemList 属性
16 lines
312 B
Markdown
16 lines
312 B
Markdown
# 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.
|
|
|
|
```vue
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'goods',
|
|
})
|
|
</script>
|
|
```
|
|
|
|
Learn more on <https://nuxt.com/docs/guide/directory-structure/layouts>
|