| | |
| | | import type { AppRouteModule } from '/@/router/types'; |
| | | import type { AppRouteModule } from '@/router/types'; |
| | | |
| | | import { LAYOUT } from '/@/router/constant'; |
| | | import { t } from '/@/hooks/web/useI18n'; |
| | | import { LAYOUT } from '@/router/constant'; |
| | | import { t } from '@/hooks/web/useI18n'; |
| | | |
| | | const about: AppRouteModule = { |
| | | path: '/about', |
| | |
| | | redirect: '/about/index', |
| | | meta: { |
| | | hideChildrenInMenu: true, |
| | | icon: 'simple-icons:about-dot-me', |
| | | icon: 'simple-icons:aboutdotme', |
| | | title: t('routes.dashboard.about'), |
| | | orderNo: 100000, |
| | | }, |
| | |
| | | { |
| | | path: 'index', |
| | | name: 'AboutPage', |
| | | component: () => import('/@/views/sys/about/index.vue'), |
| | | component: () => import('@/views/sys/about/index.vue'), |
| | | meta: { |
| | | title: t('routes.dashboard.about'), |
| | | icon: 'simple-icons:about-dot-me', |
| | | icon: 'simple-icons:aboutdotme', |
| | | hideMenu: true, |
| | | }, |
| | | }, |