mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-05 17:56:46 +08:00
98 lines
2.4 KiB
TypeScript
98 lines
2.4 KiB
TypeScript
import type { NavbarConfig } from '@vuepress/theme-default'
|
|
|
|
export const zh: NavbarConfig = [
|
|
{
|
|
text: '指南',
|
|
link: '/zh/guide/',
|
|
},
|
|
{
|
|
text: '配置',
|
|
link: '/zh/reference/config',
|
|
},
|
|
{
|
|
text: 'API',
|
|
link: '/zh/reference/api',
|
|
},
|
|
{
|
|
text: '插件',
|
|
link: '/zh/reference/plugin',
|
|
},
|
|
{
|
|
text: 'CLI',
|
|
link: '/zh/reference/cli',
|
|
},
|
|
// {
|
|
// text: '参考',
|
|
// children: [
|
|
// {
|
|
// text: 'VuePress',
|
|
// children: [
|
|
// '/zh/reference/cli.md',
|
|
// '/zh/reference/config.md',
|
|
// '/zh/reference/frontmatter.md',
|
|
// '/zh/reference/components.md',
|
|
// '/zh/reference/plugin-api.md',
|
|
// '/zh/reference/theme-api.md',
|
|
// ],
|
|
// },
|
|
// {
|
|
// text: '打包工具',
|
|
// children: [
|
|
// '/zh/reference/bundler/webpack.md',
|
|
// '/zh/reference/bundler/vite.md',
|
|
// ],
|
|
// },
|
|
// {
|
|
// text: '默认主题',
|
|
// children: [
|
|
// '/zh/reference/default-theme/config.md',
|
|
// '/zh/reference/default-theme/frontmatter.md',
|
|
// '/zh/reference/default-theme/components.md',
|
|
// '/zh/reference/default-theme/markdown.md',
|
|
// ],
|
|
// },
|
|
// {
|
|
// text: '官方插件',
|
|
// link: '/zh/reference/plugin/',
|
|
// children: [],
|
|
// },
|
|
// ],
|
|
// },
|
|
// {
|
|
// text: '了解更多',
|
|
// children: [
|
|
// {
|
|
// text: '深入',
|
|
// children: [
|
|
// '/zh/guide/advanced/markdown.md',
|
|
// '/zh/guide/advanced/theme.md',
|
|
// '/zh/guide/advanced/plugin.md',
|
|
// ],
|
|
// },
|
|
// {
|
|
// text: '其他资源',
|
|
// children: [
|
|
// '/zh/contributing.md',
|
|
// {
|
|
// text: '更新日志',
|
|
// link:
|
|
// 'https://github.com/vuepress/vuepress-next/blob/main/CHANGELOG.md',
|
|
// },
|
|
// {
|
|
// text: 'Awesome VuePress',
|
|
// link: 'https://github.com/vuepress/awesome-vuepress',
|
|
// },
|
|
// {
|
|
// text: 'v1 文档',
|
|
// link: 'https://v1.vuepress.vuejs.org/zh/',
|
|
// },
|
|
// {
|
|
// text: 'v0 文档',
|
|
// link: 'https://v0.vuepress.vuejs.org/zh/',
|
|
// },
|
|
// ],
|
|
// },
|
|
// ],
|
|
// },
|
|
]
|