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;