mirror of
https://github.com/fumiama/paper-manager.git
synced 2026-06-11 11:40:23 +08:00
18 lines
335 B
TypeScript
18 lines
335 B
TypeScript
import type { MenuModule } from '/@/router/types'
|
|
import { t } from '/@/hooks/web/useI18n'
|
|
const menu: MenuModule = {
|
|
orderNo: 30,
|
|
menu: {
|
|
name: t('routes.templist.name'),
|
|
path: '/templist',
|
|
|
|
children: [
|
|
{
|
|
path: 'index',
|
|
name: t('routes.templist.name'),
|
|
},
|
|
],
|
|
},
|
|
}
|
|
export default menu
|