Skip to content

Commit 013285d

Browse files
authored
Fix eternal links in history.md
1 parent b7f0cf4 commit 013285d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/en/getting-started/history.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ router.go(100)
5656

5757
#### History Manipulation
5858

59-
You may have noticed that `router.push`, `router.replace` and `router.go` are counterparts of [`window.history.pushState`, `window.history.replaceState` and `window.history.go`](https://developer.mozilla.org/en-US/docs/Web/API/History_API), and they do imitate the `window.history` APIs.
59+
You may have noticed that `router.push`, `router.replace` and `router.go` are counterparts of [`window.history.pushState`, `window.history.replaceState` and `window.history.go`](https://developer.mozilla.org/en-US/docs/Web/API/History), and they do imitate the `window.history` APIs.
6060

61-
Therefore, if you are already familiar with [Browser History APIs](https://developer.mozilla.org/en-US/docs/Web/API/History), manipulating history will be super easy with vue-router.
61+
Therefore, if you are already familiar with [Browser History APIs](https://developer.mozilla.org/en-US/docs/Web/API/History_API), manipulating history will be super easy with vue-router.
6262

6363
It is worth mentioning that vue-router APIs (`push`, `replace`, `go`) works consistently under all router modes (`history`, `hash` and `abstract`). Below is a table to give you a quick glance at how vue-router achieves it.
6464

@@ -67,4 +67,4 @@ It is worth mentioning that vue-router APIs (`push`, `replace`, `go`) works cons
6767
| | `history` mode | `hash` mode | `abstract` mode |
6868
| router.push | history.pushState | location.hash = ... | own implementation |
6969
| router.replace | history.replaceState | location.replace | own implementation |
70-
| router.go | history.go | history.go | own implementation |
70+
| router.go | history.go | history.go | own implementation |

0 commit comments

Comments
 (0)