Files
tiantian-system/app/config/oa-nav.ts
2026-04-08 17:10:58 +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' }
]