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();