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

17 lines
393 B
TypeScript
Raw Normal View History

2024-11-14 13:43:41 +08:00
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;