vue中页面传值的方式有:1.拼接url传值;2.通过query传值;3.通过params传值;
vue中页面传值的方式有以下几种
1.拼接url传值
this.$router.push('/editCardetail?editType=add')
参数:
editType=add:表示需传递的参数
2.通过query传值
this.$router.push({name: 'editCardetail',
params: {
editType: add
}
})
3.通过params传值
this.$router.push({path: '/editCardetail',
query: {
editType: add
}
})
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: vue组件image-viewer使用要注意什么