This repository has been archived on 2025-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
vitepress-theme-blog-charle…/repos/.vitepress/config/nav.ts
2022-07-21 18:56:58 +08:00

19 lines
454 B
TypeScript

import type { DefaultTheme } from 'vitepress'
export const nav: DefaultTheme.Config['nav'] = [
{
text: 'Bug万象集',
link: '/issues/index',
activeMatch: '/issues/' // 当前页面处于匹配路径下时, 对应导航菜单将突出显示
},
{
text: '"杂碎"逆袭史',
link: '/fragments/index',
activeMatch: '/fragments/'
},
{
text: '关于知识库',
link: '/about/index',
activeMatch: '/about/',
}
]