From 56fe690507efc7e47f3b83e4e2095afa1ccf1439 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Mon, 07 Mar 2022 01:29:57 +0800 Subject: [PATCH] Dplayer测试 --- src/config/router.config.js | 20 ++++++++++++-------- 1 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/config/router.config.js b/src/config/router.config.js index 9e5127e..e3d511e 100644 --- a/src/config/router.config.js +++ b/src/config/router.config.js @@ -3,7 +3,7 @@ import articleList from '../components/group/articleListScorll.vue' import main1 from '../components/swichLabel/main1-home.vue' -import main2 from '../components/swichLabel/main2-music-search.vue' +import platform from '../components/swichLabel/main2-music-search.vue' import main3 from '../components/swichLabel/main3-show.vue' import link from '../components/swichLabel/main4-link.vue' import login from '../components/swichLabel/main5-login.vue' @@ -18,8 +18,8 @@ export const asyncRouterMap = [{ path: '*', - // redirect: '/404', - component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'), + redirect: '/404', + // component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'), hidden: true }, { @@ -30,7 +30,7 @@ component: main1, children: [{ path: '/', - name: "articleList", + name: "home", component: articleList, props: true }, @@ -59,6 +59,10 @@ }, { path: '/link', component: boxFriend, + }, + { + path: '/404', + component: () => import('@/views/exception/404') } ] }, @@ -73,8 +77,8 @@ }, { - path: '/main2', - component: main2, + path: '/platform', + component: platform, }, { path: '/main3', @@ -101,8 +105,8 @@ * @type { *[] } */ export const constantRouterMap = [{ - path: '/404', - component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404') + // path: '/404', + // component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404') } ] -- Gitblit v1.9.1