mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
17 lines
346 B
TypeScript
17 lines
346 B
TypeScript
import { t } from '@/locales/useI18n'
|
|
|
|
import type { AppRouteRecordRaw } from '@/router/type'
|
|
|
|
const dashboard: AppRouteRecordRaw = {
|
|
path: '/dashboard',
|
|
name: 'RDashboard',
|
|
component: () => import('@/views/dashboard/index'),
|
|
meta: {
|
|
i18nKey: t('menu.Dashboard'),
|
|
icon: 'dashboard',
|
|
order: 0,
|
|
},
|
|
}
|
|
|
|
export default dashboard
|