| 123456789101112131415161718192021 |
- /**
- * @see https://theme-plume.vuejs.press/config/navigation/ 查看文档了解配置详情
- *
- * Navbar 配置文件,它在 `.vuepress/plume.config.ts` 中被导入。
- */
- import { defineNavbarConfig } from 'vuepress-theme-plume'
- export default defineNavbarConfig([
- { text: '首页', link: '/' },
- // { text: '博客', link: '/blog/' },
- // { text: '标签', link: '/blog/tags/' },
- // { text: '归档', link: '/blog/archives/' },
- {
- text: '系统文档',
- items: [
- { text: '系统概述', link: '/docs/systemModel.md' },
- { text: '系统背景', link: '/docs/systemBackground.md' }
- ]
- },
- ])
|