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