扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

vue页面传值有哪些方式

扬州沐宇科技
2021-03-29 14:42:58
vue, 页面传值

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

     }

})


扫码添加客服微信