1.引入方式不同 query要用path來引入 this.$router.push({ path: 'test', query: { type: 2, detail: '哈哈' } }) params要用name來引入 params要用name來引入 this.$router.push({ name ...
1.引入方式不同
query要用path來引入this.$router.push({ path: 'test', query: { type: 2, detail: '哈哈' } })
params要用name來引入
this.$router.push({ name: 'test', query: { type: 2, detail: '哈哈' } })
2.url不同
query在url中顯示參數http://localhost:8080/detail?type=0&detail=哈哈params在url中不顯示參數
http://localhost:8080/detail