Browse Source

perf: Changing variable names (#1869)

仲灏 3 years ago
parent
commit
e807539b80
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/router/routes/modules/about.ts

+ 2 - 2
src/router/routes/modules/about.ts

@@ -3,7 +3,7 @@ import type { AppRouteModule } from '/@/router/types';
 import { LAYOUT } from '/@/router/constant';
 import { t } from '/@/hooks/web/useI18n';
 
-const dashboard: AppRouteModule = {
+const about: AppRouteModule = {
   path: '/about',
   name: 'About',
   component: LAYOUT,
@@ -28,4 +28,4 @@ const dashboard: AppRouteModule = {
   ],
 };
 
-export default dashboard;
+export default about;