Fix linting errors

pull/5248/head
Suven-p 4 weeks ago
parent 2e18a19a9e
commit d9c626d4cc

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

Loading…
Cancel
Save