mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect-embeded.git
synced 2025-06-24 21:44:12 +08:00
17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
import type { AppRouteModule } from '/src/router/types';
|
|
|
|
import { LAYOUT } from '/src/router/constant';
|
|
import { t } from '/src/hooks/web/useI18n';
|
|
|
|
const about: AppRouteModule = {
|
|
path: '/dashboard',
|
|
name: 'Dashboard',
|
|
component: () => import('/src/views/dashboard/index.vue'),
|
|
meta: {
|
|
title: t('routes.dashboard.dashboard'),
|
|
ignoreAuth: true,
|
|
},
|
|
};
|
|
|
|
export default about;
|