vue改变url参数值
let query = this.$router.history.current.query
let path = this.$router.history.current.path
let newQuery = JSON.parse(JSON.stringify(query));
newQuery.tab = this.active;
this.$router.push({ path, query: newQuery });
推荐阅读
- 2018-02-06第三天|2018-02-06第三天 不能再了,反思到位就差改变
- vue-cli|vue-cli 3.x vue.config.js 配置
- 2020-04-07vue中Axios的封装和API接口的管理
- 改变自己,先从自我反思开始
- 越努力越幸福
- #微习惯可以改变你#第2周复盘
- VueX--VUE核心插件
- 如何启动改变
- 改变没有对错
- vue组件中为何data必须是一个函数()