🐛 Fixes #417
This commit is contained in:
parent
d284002803
commit
e2d7c0225e
1 changed files with 9 additions and 5 deletions
|
|
@ -1847,12 +1847,16 @@ export default {
|
|||
? [flat("rawParams")]
|
||||
: [deep("bodyParams")];
|
||||
|
||||
this.$router.replace(
|
||||
history.replaceState(
|
||||
window.location.href,
|
||||
"",
|
||||
"/?" +
|
||||
flats
|
||||
.concat(deeps, bodyParams)
|
||||
.join("")
|
||||
.slice(0, -1)
|
||||
encodeURIComponent(
|
||||
flats
|
||||
.concat(deeps, bodyParams)
|
||||
.join("")
|
||||
.slice(0, -1)
|
||||
)
|
||||
);
|
||||
},
|
||||
setRouteQueries(queries) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue