1. 程式人生 > >vue this.$router.push()傳參

vue this.$router.push()傳參

1  params 傳參

注意⚠️:patams傳參 ,路徑不能使用path 只能使用name,不然獲取不到傳的資料

this.$router.push({name: 'dispatch', params: {paicheNo: obj.paicheNo}})

取資料:this.$route.params.paicheNo

this.$route.params.paicheNo

2 query傳參

this.$router.push({path: '/transport/dispatch', query: {paicheNo: obj.paicheNo}})

取資料:this.$route.query.paicheNo

this.$route.query.paicheNo