Files
jczxw-pc/app/config/oa-nav.ts
2026-04-23 16:30:57 +08:00

11 lines
160 B
TypeScript

export type OaNavItem = {
key: string
label: string
to: string
}
export const oaNav: OaNavItem[] = [
{ key: 'oa-home', label: '概览', to: '/oa' }
]