mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
18 lines
380 B
TypeScript
18 lines
380 B
TypeScript
import { t } from '@/hooks'
|
|
import { LAYOUT } from '@/router/constant'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const directive: AppRouteRecordRaw = {
|
|
path: '/directive',
|
|
name: 'RDirective',
|
|
component: () => import('@/views/demo/directive/index'),
|
|
meta: {
|
|
i18nKey: t('menu.Directive'),
|
|
icon: 'other',
|
|
order: 2,
|
|
},
|
|
}
|
|
|
|
export default directive
|