mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-13 11:09:16 +08:00
18 lines
382 B
TypeScript
18 lines
382 B
TypeScript
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/`
|
|
}
|
|
]
|
|
}
|
|
}
|