antd-tiny-vue/.vitepress/config/zh-CN/nav.ts

11 lines
185 B
TypeScript
Raw Normal View History

2023-02-26 08:20:18 +08:00
import type { DefaultTheme } from 'vitepress'
export const getNav = (): DefaultTheme.NavItem[] => {
return [
{
text: '组件',
2023-04-16 18:09:13 +08:00
link: '/zh-CN/components/'
2023-02-26 08:20:18 +08:00
}
]
}