Commit e807539b80e66b20baf1f88c69eb15b11cb0e8fd

Authored by 仲灏
Committed by GitHub
1 parent 0634f2ca

perf: Changing variable names (#1869)

src/router/routes/modules/about.ts
... ... @@ -3,7 +3,7 @@ import type { AppRouteModule } from '/@/router/types';
3 3 import { LAYOUT } from '/@/router/constant';
4 4 import { t } from '/@/hooks/web/useI18n';
5 5  
6   -const dashboard: AppRouteModule = {
  6 +const about: AppRouteModule = {
7 7 path: '/about',
8 8 name: 'About',
9 9 component: LAYOUT,
... ... @@ -28,4 +28,4 @@ const dashboard: AppRouteModule = {
28 28 ],
29 29 };
30 30  
31   -export default dashboard;
  31 +export default about;
... ...