detect-embeded/src/router/routes/embedded/dashboard.ts

16 lines
340 B
TypeScript
Raw Normal View History

2025-01-03 11:19:45 +08:00
import type { AppRouteModule } from '@/router/types';
2024-11-14 13:43:41 +08:00
2025-01-03 11:19:45 +08:00
import { t } from '@/hooks/web/useI18n';
2024-11-14 13:43:41 +08:00
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;