2022-11-18 11:13:51 +08:00

55 lines
973 B
TypeScript

import type { NavbarConfig } from '@vuepress/theme-default'
import { version } from '../../../../package.json'
export const zh: NavbarConfig = [
{
text: '指南',
link: '/guide/',
},
{
text: '编译时配置',
link: '/reference/config/',
},
{
text: 'API',
link: '/reference/api/',
},
{
text: '插件',
link: '/reference/plugin/',
},
{
text: 'CLI',
link: '/reference/cli/',
},
{
text: `v${version}`,
children: [
{
text: 'v2.0',
link:
'https://fesjs.mumblefe.cn/',
},
{
text: 'v1.0',
link: 'https://fesjs.mumblefe.cn/1.0',
},
],
},
{
text: '了解更多',
children: [
{
text: '更新日志',
link:
'https://github.com/WeBankFinTech/fes.js/blob/next/CHANGELOG.md',
},
{
text: 'fes-design',
link:
'http://fes-design.mumblefe.cn/',
},
],
},
]