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

18 lines
382 B
TypeScript
Raw Normal View History

2023-04-16 18:09:13 +08:00
import type { DefaultTheme } from 'vitepress'
const componentsDir = `/zh-CN/components/`
export const getSidebar = (): DefaultTheme.Sidebar => {
return {
'/zh-CN/components/': [
{
text: 'Button 按钮',
link: `${componentsDir}button/`
},
{
text: 'ConfigProvider',
link: `${componentsDir}config-provider/`
}
]
}
}