-
后台管理系统
-
欢迎来使用后台管理系统
+
传统修仙后台管理系统
+
欢迎来使用,拥抱开源。
@@ -32,17 +43,31 @@
diff --git a/src/router/index.js b/src/router/index.js
index 83d38de..32b96e2 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -37,7 +37,7 @@ const routes = [
show: false,
title: '登录',
},
- component: import('../pages/loginPage.vue'),
+ component: () => import('../pages/loginPage.vue'),
},
...charts,
...results,
diff --git a/src/router/modules/charts.js b/src/router/modules/charts.js
index 0fb1507..dd63d2d 100644
--- a/src/router/modules/charts.js
+++ b/src/router/modules/charts.js
@@ -38,21 +38,23 @@ export default [
meta: {
title: '数据集',
},
- },{
- path:'/radar',
- name:'ChartRadar',
- component:()=>import('@/pages/charts/ChartRadar.vue'),
- meta:{
- title:'雷达图'
- }
- },{
- path:'/scatter',
- name:'ChartScatter',
- component:()=>import('@/pages/charts/ChartScatter.vue'),
- meta:{
- title:'散点图'
- }
- }
+ },
+ {
+ path: '/radar',
+ name: 'ChartRadar',
+ component: () => import('@/pages/charts/ChartRadar.vue'),
+ meta: {
+ title: '雷达图',
+ },
+ },
+ {
+ path: '/scatter',
+ name: 'ChartScatter',
+ component: () => import('@/pages/charts/ChartScatter.vue'),
+ meta: {
+ title: '散点图',
+ },
+ },
],
},
];