Redirect the route through JS and pass the parameter
this.$router.push({
name: 'AgreeRules',
params: {
agreeId: '1'
}
})
Copy the code
Received in AgreeRules
mounted(e) {
console.log(this.$route.params.agreeId)
},
Copy the code