mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
74 lines
1.7 KiB
TypeScript
74 lines
1.7 KiB
TypeScript
import { t } from '@/locales/useI18n'
|
|
import { LAYOUT } from '@/router/constant/index'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const multiMenu: AppRouteRecordRaw = {
|
|
path: '/multi',
|
|
name: 'MultiMenu',
|
|
component: LAYOUT,
|
|
meta: {
|
|
i18nKey: t('menu.MultiMenu'),
|
|
icon: 'other',
|
|
order: 4,
|
|
},
|
|
children: [
|
|
{
|
|
path: 'multi-menu-one',
|
|
name: 'MultiMenuOne',
|
|
component: () => import('@/views/multi/views/multi-menu-one/index'),
|
|
meta: {
|
|
noLocalTitle: '多级菜单-1',
|
|
keepAlive: true,
|
|
},
|
|
},
|
|
{
|
|
path: 'multi-menu-two',
|
|
name: 'MultiMenuTwo',
|
|
component: LAYOUT,
|
|
meta: {
|
|
noLocalTitle: '多级菜单-2',
|
|
},
|
|
children: [
|
|
{
|
|
path: 'sub-menu-other',
|
|
name: 'SubMenuOther',
|
|
component: () =>
|
|
import(
|
|
'@/views/multi/views/multi-menu-two/views/sub-menu-other/index'
|
|
),
|
|
meta: {
|
|
noLocalTitle: '多级菜单-2-1',
|
|
keepAlive: true,
|
|
},
|
|
},
|
|
{
|
|
path: 'sub-menu',
|
|
name: 'SubMenu',
|
|
component: LAYOUT,
|
|
meta: {
|
|
noLocalTitle: '多级菜单-2-2',
|
|
keepAlive: true,
|
|
},
|
|
children: [
|
|
{
|
|
path: 'sub-menu-one',
|
|
name: 'MultiMenuTwoOne',
|
|
component: () =>
|
|
import(
|
|
'@/views/multi/views/multi-menu-two/views/sub-menu/views/multi-menu-two-one/index'
|
|
),
|
|
meta: {
|
|
noLocalTitle: '多级菜单-2-2-1',
|
|
keepAlive: true,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
export default multiMenu
|