Modify only required parts of url

pull/5248/head
Suven-p 1 month ago
parent d9c626d4cc
commit db1a980e23

@ -205,12 +205,11 @@ router.beforeEach((to, from) => {
// Without this check, the router will be stuck in an infinite loop
if (to.path !== from.path && !to.redirectedFrom) {
return {
path: to.path,
...to,
query: {
...to.query,
...from.query,
},
params: to.params,
};
}
});

Loading…
Cancel
Save