mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 17:49:18 +08:00
11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
import type { DefaultTheme } from 'vitepress'
|
|
|
|
export const getNav = (): DefaultTheme.NavItem[] => {
|
|
return [
|
|
{
|
|
text: '组件',
|
|
link: '/components/'
|
|
}
|
|
]
|
|
}
|