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 57e8e22 commit 761fe01Copy full SHA for 761fe01
src/history/hash.js
@@ -59,7 +59,7 @@ export class HashHistory extends History {
59
60
ensureURL () {
61
if (getHash() !== this.current.fullPath) {
62
- replaceHash(this.current.fullPath)
+ pushHash(this.current.fullPath)
63
}
64
65
src/history/html5.js
@@ -61,7 +61,7 @@ export class HTML5History extends History {
if (getLocation(this.base) !== this.current.fullPath) {
- replaceState(cleanPath(this.base + this.current.fullPath))
+ pushState(cleanPath(this.base + this.current.fullPath))
66
67
0 commit comments