@@ -38,7 +38,11 @@ router.beforeEach(async (to, from, next) => {
next();
}
} else {
- next();
+ if (to.path == "/") {
+ next("/voyage/voyageList");
+ } else {
+ next();
+ }
store.commit("changeLogin", false);