mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
19 lines
408 B
TypeScript
19 lines
408 B
TypeScript
import { t } from '@/locales/useI18n'
|
|
import { LAYOUT } from '@/router/constant/index'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const mockDemo: AppRouteRecordRaw = {
|
|
path: '/mock-demo',
|
|
name: 'MockDemo',
|
|
component: () => import('@/views/demo/mock-demo/index'),
|
|
meta: {
|
|
i18nKey: t('menu.Mock'),
|
|
icon: 'other',
|
|
order: 3,
|
|
keepAlive: true,
|
|
},
|
|
}
|
|
|
|
export default mockDemo
|