antd-tiny-vue/.vitepress/config/en-US/sidebar.ts

19 lines
364 B
TypeScript
Raw Normal View History

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