vue路由跳转带参数
2020-11-16 本文已影响0人
盗生一
1.vue
<span @click="toCar(item.jdcxxbz)" style="cursor: pointer"> {{item.jdchphm}}</span>
// 跳转到车辆
methods: {
// 跳转到车辆
toCar(item){
this.$router.push({
path: "/archives/car",
query:{
carId: item
}
});
}
}