当前页面
<!-- 提交按钮 -->
<span class="purchase" @click="orders()">
购买:{{this.moneys}}元
</span>
js
methods:{
orders(){
this.$router.push({
path:'/orders',
query:{
moneys:this.moneys,
}
});
}
接收值页面
methods:{
orders(){
this.moneys = this.$route.query.moneys;
console.log(this.moneys)
},
created(){
this.orders()
}
这样我们就能在接收值页面得到传过来的值了,喜欢的请关注谢谢!
如果有问题,可以加我微信一起讨论,我们一起进步!
屏幕前的你,加油!