温馨提示×

vue页面传值有哪些方式

养鱼的猫咪
766
2021-03-29 14:42:58
栏目: 编程语言

vue中页面传值的方式有:1.拼接url传值;2.通过query传值;3.通过params传值;

vue页面传值有哪些方式

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

     }

})


0