From 095dfbbc6f126252b7482c3cedace51f14dc66fb Mon Sep 17 00:00:00 2001 From: h_mo <596417202@qq.com> Date: Mon, 8 May 2023 22:04:49 +0800 Subject: [PATCH] style: remove console.log --- src/router/guard.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/router/guard.ts b/src/router/guard.ts index 4b41975..777f303 100644 --- a/src/router/guard.ts +++ b/src/router/guard.ts @@ -28,7 +28,6 @@ function createBeforeEachGuard(router: Router) { function createAfterEachGuard(router: Router) { router.afterEach((to) => { - console.log('afterEach', to); // @ts-ignore if (to && to?.meta?.ignoreAuth) return; const authStore = useAuthStore();