We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d5b351 commit 029a0f7Copy full SHA for 029a0f7
src/transition.js
@@ -71,8 +71,8 @@ export default class RouteTransition {
71
if (typeof path === 'string') {
72
path = mapParams(path, this.to.params, this.to.query)
73
} else {
74
- path.params = this.to.params
75
- path.query = this.to.query
+ path.params = path.params || this.to.params
+ path.query = path.query || this.to.query
76
}
77
this.router.replace(path)
78
0 commit comments