Update README.ja.md

This commit is contained in:
Jen Looper
2021-05-31 21:34:14 -04:00
committed by GitHub
parent 767ad88f9a
commit 1596bdce53

View File

@@ -212,7 +212,7 @@ JavaScript、特に [`history.pushState`](https://developer.mozilla.org/ja/docs/
```js ```js
function navigate(path) { function navigate(path) {
window.history.pushState({}, path, window.location.origin + path); window.history.pushState({}, path, path);
updateRoute(); updateRoute();
} }
``` ```