Vue文件跳转$router传参数
<button @click = "func()">跳转</button>//js
<script>
export default{
methods:{
func (){
this.$router.push({path: '/order/b',query:{ price:69.00 }});
}
}
}
</script>
以上是 Vue文件跳转$router传参数 的全部内容, 来源链接: utcz.com/z/378368.html
<button @click = "func()">跳转</button>//js
<script>
export default{
methods:{
func (){
this.$router.push({path: '/order/b',query:{ price:69.00 }});
}
}
}
</script>
以上是 Vue文件跳转$router传参数 的全部内容, 来源链接: utcz.com/z/378368.html