2021-04-01 00:52:31 +08:00
|
|
|
import type { AppRouteModule } from '/@/router/types';
|
|
|
|
|
|
|
|
|
|
import { LAYOUT } from '/@/router/constant';
|
|
|
|
|
import { t } from '/@/hooks/web/useI18n';
|
|
|
|
|
|
|
|
|
|
const dashboard: AppRouteModule = {
|
|
|
|
|
path: '/about',
|
|
|
|
|
name: 'About',
|
|
|
|
|
component: LAYOUT,
|
|
|
|
|
redirect: '/about/index',
|
|
|
|
|
meta: {
|
2021-06-27 23:58:14 +08:00
|
|
|
hideChildrenInMenu: true,
|
2021-04-01 00:52:31 +08:00
|
|
|
icon: 'simple-icons:about-dot-me',
|
|
|
|
|
title: t('routes.dashboard.about'),
|
2021-06-27 23:58:14 +08:00
|
|
|
orderNo: 100000,
|
2021-04-01 00:52:31 +08:00
|
|
|
},
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: 'index',
|
|
|
|
|
name: 'AboutPage',
|
|
|
|
|
component: () => import('/@/views/sys/about/index.vue'),
|
|
|
|
|
meta: {
|
|
|
|
|
title: t('routes.dashboard.about'),
|
|
|
|
|
icon: 'simple-icons:about-dot-me',
|
2021-07-05 14:50:41 +08:00
|
|
|
// hideMenu: true,
|
2021-04-01 00:52:31 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default dashboard;
|