mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
18 lines
375 B
TypeScript
18 lines
375 B
TypeScript
import { t } from '@/hooks/web/useI18n'
|
|
import { LAYOUT } from '@/router/constant'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/types'
|
|
|
|
const qrcode: AppRouteRecordRaw = {
|
|
path: '/qrcode',
|
|
name: 'RQRCode',
|
|
component: () => import('@/views/demo/qrcode/index'),
|
|
meta: {
|
|
i18nKey: t('menu.QRCode'),
|
|
icon: 'other',
|
|
order: 2,
|
|
},
|
|
}
|
|
|
|
export default qrcode
|