http://blog.csdn.net/qq_15646957/article/details/78070862
发送页面this.$router 接收页面this.$route
this.$router.push({
path: '',
query: {
key: value
}
})
----or------
this.$router.push({
name: '', //routes中要配置name名称
params: { //有params时,不能用path,
key: value
}
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15