正常情况下

this.$router.push({
query:{}
})
this.$router.replace({
query:{}
})

就可以修改了
但是当已有query对象里面修改其中一个值,就会发现虽然this.$route.query发生改变但是浏览器的url上的参数并没有发生变化, 尝试将已有的参数进行深拷贝突然发现就可以了

let newQuery= JSON.parse(JSON.stringify(this.$route.query));
newQuery.index = 2;
this.$router.replace({
query: newQuery
})

Logo

前往低代码交流专区

更多推荐