mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-04 20:57:54 +08:00
85 lines
1.9 KiB
TypeScript
85 lines
1.9 KiB
TypeScript
import type { NavbarConfig } from '@vuepress/theme-default'
|
|
|
|
export const en: NavbarConfig = [
|
|
{
|
|
text: 'Guide',
|
|
link: '/guide/',
|
|
},
|
|
{
|
|
text: 'Reference',
|
|
children: [
|
|
{
|
|
text: 'VuePress',
|
|
children: [
|
|
{
|
|
text: 'CLI',
|
|
link: '/reference/cli.html',
|
|
},
|
|
'/reference/config.md',
|
|
'/reference/frontmatter.md',
|
|
'/reference/components.md',
|
|
'/reference/plugin-api.md',
|
|
'/reference/theme-api.md',
|
|
],
|
|
},
|
|
{
|
|
text: 'Bundlers',
|
|
children: [
|
|
'/reference/bundler/webpack.md',
|
|
'/reference/bundler/vite.md',
|
|
],
|
|
},
|
|
{
|
|
text: 'Default Theme',
|
|
children: [
|
|
'/reference/default-theme/config.md',
|
|
'/reference/default-theme/frontmatter.md',
|
|
'/reference/default-theme/components.md',
|
|
'/reference/default-theme/markdown.md',
|
|
],
|
|
},
|
|
{
|
|
text: 'Official Plugins',
|
|
link: '/reference/plugin/',
|
|
children: [],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: 'Learn More',
|
|
children: [
|
|
{
|
|
text: 'Advanced',
|
|
children: [
|
|
'/guide/advanced/markdown.md',
|
|
'/guide/advanced/theme.md',
|
|
'/guide/advanced/plugin.md',
|
|
],
|
|
},
|
|
{
|
|
text: 'Resources',
|
|
children: [
|
|
'/contributing.md',
|
|
{
|
|
text: 'Changelog',
|
|
link:
|
|
'https://github.com/vuepress/vuepress-next/blob/main/CHANGELOG.md',
|
|
},
|
|
{
|
|
text: 'Awesome VuePress',
|
|
link: 'https://github.com/vuepress/awesome-vuepress',
|
|
},
|
|
{
|
|
text: 'v1 docs',
|
|
link: 'https://v1.vuepress.vuejs.org',
|
|
},
|
|
{
|
|
text: 'v0 docs',
|
|
link: 'https://v0.vuepress.vuejs.org',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
]
|