lijh
2022-01-13 ad2b70777b866a9f4848a89fd0e343f991f8a604
src/config/router.config.js
@@ -1,43 +1,61 @@
import BasicLayout from '../layouts/BasicLayout.vue'
import main from '../components/layouts/main.vue'
import main1 from '../components/layouts/main1-show.vue'
import main2 from '../components/layouts/main2-show.vue'
import box6 from '../components/layouts/box6-articleList.vue'
import box1 from '../components/layouts/box1-info.vue'
import box2 from '../components/layouts/box2-class.vue'
export const asyncRouterMap = [{
      path: '/',
      component: main,
      meta: {
         title: "在你左边,听风及雨"
      },
      path: '*',
      // redirect: '/404',
      component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'),
      hidden: true
   },
   {
      path: '/home',
      name: 'BasicLayout.vue',
      component: BasicLayout,
      meta: {
         title: '在你左边,听风及雨'
      },
      children: [
      path: '/',
      component: main,
      children: [{
            path: '/',
            component: main1,
            children: [{
                  path: '/',
                  component: box6,
               },
               {
                  path: '/box1',
                  component: box1,
               }
            ]
         },
         {
            path: '/main1',
            component: main1,
            children: [{
               path: '/',
               component: box6,
            }]
         },
         {
            path: '/main2',
            component: main2,
         },
      ]
   },
   {
      path: '*',
      redirect: '/404',
      hidden: true
   }
]
/**
 * 基础路由
 * @type { *[] }
 */
export const constantRouterMap = [
   {
export const constantRouterMap = [{
      path: '/404',
      component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404')
   }
]