美国服务器的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

}

})