1
0
mirror of https://github.com/fumiama/paper-manager.git synced 2026-06-12 04:00:23 +08:00

implement genfile

This commit is contained in:
源文雨
2023-04-22 21:31:12 +08:00
parent 9d9e04ebd2
commit 2e44127672
16 changed files with 898 additions and 404 deletions

View File

@@ -0,0 +1,17 @@
import type { MenuModule } from '/@/router/types'
import { t } from '/@/hooks/web/useI18n'
const menu: MenuModule = {
orderNo: 40,
menu: {
name: t('routes.genfile.name'),
path: '/genfile',
children: [
{
path: 'index',
name: t('routes.genfile.name'),
},
],
},
}
export default menu

View File

@@ -1,7 +1,7 @@
import type { MenuModule } from '/@/router/types'
import { t } from '/@/hooks/web/useI18n'
const menu: MenuModule = {
orderNo: 20,
orderNo: 30,
menu: {
name: t('routes.templist.name'),
path: '/templist',