1
0
mirror of https://github.com/fumiama/paper-manager.git synced 2026-06-17 16:20:25 +08:00
Files
paper-manager/frontend/vben/src/router/menus/modules/about.ts
2023-03-14 15:32:56 +08:00

18 lines
337 B
TypeScript

import type { MenuModule } from '/@/router/types'
import { t } from '/@/hooks/web/useI18n'
const menu: MenuModule = {
orderNo: 100,
menu: {
name: t('routes.dashboard.about'),
path: '/about',
children: [
{
path: 'index',
name: t('routes.dashboard.about'),
},
],
},
}
export default menu