test02/docs/.vuepress/layouts/Article.vue
罗佳鸿 6aa1ebe342
Some checks are pending
部署文档 / deploy-gh-pages (push) Waiting to run
first commit
2024-08-13 10:11:19 +08:00

18 lines
435 B
Vue

<script setup>
import { useBlogType } from '@vuepress/plugin-blog/client'
import ParentLayout from '@vuepress/theme-default/layouts/Layout.vue'
import ArticleList from '../components/ArticleList.vue'
const articles = useBlogType('article')
</script>
<template>
<ParentLayout>
<template #page>
<main class="page">
<ArticleList :items="articles.items" />
</main>
</template>
</ParentLayout>
</template>