//params形式:参数不显示在地址栏
this.$router.push({ name: 'details', params: { userId: this.num }})
//获取
console.log(this.$route.params.userId);
//query形式:参数显示在地址栏
this.$router.push({ path: 'details', query: { userId: this.num }})
//获取
console.log(this.$route.query.userId);
官网地址:编程式导航:https://router.vuejs.org/zh-cn/essentials/navigation.html