huangyinfeng
6 天以前 a9a03d64cf190188d3db04d14970fc0908b03491
提交 | 用户 | age
807478 1 import type { AppRouteModule } from '@/router/types';
S 2
3 import { LAYOUT } from '@/router/constant';
4 import { t } from '@/hooks/web/useI18n';
5
6 const about: AppRouteModule = {
7   path: '/about',
8   name: 'About',
9   component: LAYOUT,
10   redirect: '/about/index',
11   meta: {
12     hideChildrenInMenu: true,
13     icon: 'simple-icons:aboutdotme',
14     title: t('routes.dashboard.about'),
15     orderNo: 100000,
16   },
17   children: [
18     {
19       path: 'index',
20       name: 'AboutPage',
21       component: () => import('@/views/sys/about/index.vue'),
22       meta: {
23         title: t('routes.dashboard.about'),
24         icon: 'simple-icons:aboutdotme',
25         hideMenu: true,
26       },
27     },
28   ],
29 };
30
31 export default about;