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
}
})