From 04a114ad5ba0d169f10520b946eaac589b68de8e Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 1 Dec 2021 10:20:44 +0800 Subject: [PATCH] Update app.js --- static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index b2a8d025d..a9571337d 100644 --- a/static/app.js +++ b/static/app.js @@ -36,6 +36,7 @@ // 路由前置处理 let loading = null; router.beforeEach(function (to, fr, next) { + console.log(to) let name = to.fullPath.replace(/[.\/]+/g, '_'); if (router.hasRoute(name)) { console.log(''); @@ -45,7 +46,6 @@ }); next(); } else { - console.log(to) router.addRoute({name: name, path: to.fullPath, component: loadVueFile(to.fullPath)}); next({name: name}); }