|
@@ -9,6 +9,7 @@
|
|
|
import Vue from 'vue'
|
|
|
import Router from 'vue-router'
|
|
|
import store from '@/store'
|
|
|
+import Layout from '@/layout'
|
|
|
|
|
|
Vue.use(Router)
|
|
|
|
|
@@ -53,15 +54,26 @@ export const constantRoutes = [
|
|
|
path: '/404',
|
|
|
component: () => import('@/views/404'),
|
|
|
hidden: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/',
|
|
|
+ component: Layout,
|
|
|
+ hidden: true,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '',
|
|
|
+ name: 'HomePage',
|
|
|
+ meta: { title: '首页', },
|
|
|
+ component: () => import('@/views/HomePage/index.vue'),
|
|
|
+ },
|
|
|
+ ]
|
|
|
}
|
|
|
- // { path: '/', redirect: '/nopower', component: () => import('@/views/noPower'), hidden: true }
|
|
|
- // 404 page must be placed at the end !!!
|
|
|
]
|
|
|
|
|
|
// 动态路由
|
|
|
export const asyncRoutes = []
|
|
|
// 插入路由
|
|
|
-// asyncRoutes.push({ path: '/', component: () => import('@/views/noPower'), hidden: true })
|
|
|
+// asyncRoutes.push({ path: '/', component: () => import('@/views/HomePage/index.vue'), hidden: true })
|
|
|
asyncRoutes.push({
|
|
|
path: '*',
|
|
|
component: () => import('@/views/404'),
|