navbar.ts 628 B

123456789101112131415161718192021
  1. /**
  2. * @see https://theme-plume.vuejs.press/config/navigation/ 查看文档了解配置详情
  3. *
  4. * Navbar 配置文件,它在 `.vuepress/plume.config.ts` 中被导入。
  5. */
  6. import { defineNavbarConfig } from 'vuepress-theme-plume'
  7. export default defineNavbarConfig([
  8. { text: '首页', link: '/' },
  9. // { text: '博客', link: '/blog/' },
  10. // { text: '标签', link: '/blog/tags/' },
  11. // { text: '归档', link: '/blog/archives/' },
  12. {
  13. text: '系统文档',
  14. items: [
  15. { text: '系统概述', link: '/docs/systemModel.md' },
  16. { text: '系统背景', link: '/docs/systemBackground.md' }
  17. ]
  18. },
  19. ])