vue-无刷新修改 url 参数 发表于 2020-04-27 | 分类于 Vue | 字数统计: 81 字 | 阅读时长 ≈ 1 分钟 12345678910111213141516import merge from 'webpack-merge';// 修改原有参数 this.$router.push({ query:merge( this.$route.query, { 'maxPrice': '630' })})// 新增一个参数:this.$router.push({ query:merge( this.$route.query, { 'addParams': '新增参数' })})// 替换所有参数:this.$router.push({ query:merge( {}, { 'maxPrice': '630' })})