How to pass parameters in Vue routing

this.$router.push({

name: 'Platform',

params: {

id: id

}

})

Obtaining method: this.$route.params.id

this.$router.push({ // This method route will be followed by parameters

path: '/platform',

query: {

id: id

}

})

Obtaining method: this.$route.query.id

Guess you like

Origin blog.csdn.net/lala1091/article/details/115543661