登录流程接口对接

This commit is contained in:
唐明明
2022-01-06 14:54:22 +08:00
parent 4709ff0c4a
commit 53a6f0b149
10 changed files with 202 additions and 60 deletions

View File

@@ -11,11 +11,12 @@ const router = createRouter({
//全局路由前置守卫
router.beforeEach((to, from, next) => {
next();
});
});
// 全局路由后置守卫
router.afterEach((to, from) => {
console.log('跳转结束')
})
})
export {
router,