- 在路由守卫中增加对已登录用户访问根路径的处理 - 当用户已登录且访问根路径时,重定向到首页
@@ -109,6 +109,8 @@ router.beforeEach(async (to, from, next) => {
} else if (token && to.path === '/login') {
next('/home');
NProgress.done();
+ } else if (token && to.path === '/') {
+ next('/home');
} else {
const storesRoutesList = useRoutesList(pinia);