Fix linting errors

This commit is contained in:
Suven-p 2024-10-27 19:59:16 +05:45
parent 2e18a19a9e
commit d9c626d4cc

View file

@ -206,9 +206,12 @@ router.beforeEach((to, from) => {
if (to.path !== from.path && !to.redirectedFrom) { if (to.path !== from.path && !to.redirectedFrom) {
return { return {
path: to.path, path: to.path,
query: { ...to.query, ...from.query }, query: {
...to.query,
...from.query,
},
params: to.params, params: to.params,
} };
} }
}); });