2023-02-26 08:20:18 +08:00
|
|
|
import type { DefaultTheme } from 'vitepress'
|
|
|
|
|
|
|
|
export const getSidebar = (): DefaultTheme.Sidebar => {
|
2023-02-26 09:13:45 +08:00
|
|
|
return {
|
|
|
|
'/components/': [
|
|
|
|
{
|
|
|
|
text: 'Button 按钮',
|
|
|
|
link: '/components/button/'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2023-02-26 08:20:18 +08:00
|
|
|
}
|