From fc0c102554f509989dd74b199f298a67f266c3c8 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Fri, 25 Feb 2022 12:11:27 +0800 Subject: [PATCH] 虫洞添加,统计代码添加,样式局部调整 --- src/config/router.config.js | 17 +++++++++++++++-- 1 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/config/router.config.js b/src/config/router.config.js index 71f7d62..cbeb488 100644 --- a/src/config/router.config.js +++ b/src/config/router.config.js @@ -6,8 +6,10 @@ import main2 from '../components/swichLabel/main2-show.vue' import main3 from '../components/swichLabel/main3-show.vue' import main4 from '../components/swichLabel/main4-show.vue' +import login from '../components/swichLabel/main5-show.vue' import box1 from '../components/mini/box1-info.vue' +import comment from '../components/mini/box12-comment.vue' import tagTime from '../components/mini/tagTime.vue' import tagInfo from '../components/mini/tagInfo.vue' import boxFriend from '../components/mini/box-friend.vue' @@ -28,6 +30,7 @@ component: main1, children: [{ path: '/', + name: "articleList", component: articleList, props: true }, @@ -36,15 +39,21 @@ component: box1, }, { + name: "tagTime", path: '/tagTime', component: tagTime, - props: true + }, + { + name: "comment", + path: '/comment', + component: comment, }, { path: '/tagInfo', component: tagInfo, }, { + name: "mdDetail", path: '/mdDetail', component: mdDetail, }, { @@ -54,10 +63,11 @@ ] }, { - path: '/main1', + path: '/articleList', component: main1, children: [{ path: '/', + name: "articleList", component: articleList, }] }, @@ -73,6 +83,9 @@ { path: '/main4', component: main4, + }, { + path: '/login', + component: login, }, -- Gitblit v1.9.1