]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: typo in readme (#349)
authorNick Hall <iamssb@gmail.com>
Sat, 4 Jul 2020 08:11:01 +0000 (03:11 -0500)
committerGitHub <noreply@github.com>
Sat, 4 Jul 2020 08:11:01 +0000 (10:11 +0200)
README.md

index f98f146171cff82622381274de69c60890e54b10..664b1f125f029dbe322c743b967816f36c644e7d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ Check the [playground](https://github.com/vuejs/vue-router-next/tree/master/play
 
 - `base` option is now passed as the first argument to `createWebHistory` (and other histories)
 - Catch all routes (`/*`) must now be defined using a parameter with a custom regex: `/:catchAll(.*)`
-- `router.match` and `router.resolve` are merged together into `router.resolve` with a slightly different signature. Check it's typing through autocomplete or [Router's `resolve` method](https://github.com/vuejs/vue-router-next/blob/master/src/router.ts)
+- `router.match` and `router.resolve` are merged together into `router.resolve` with a slightly different signature. Check its typing through autocomplete or [Router's `resolve` method](https://github.com/vuejs/vue-router-next/blob/master/src/router.ts)
 - `router.getMatchedComponents` is now removed as they can be retrieved from `router.currentRoute.value.matched`:
   ```js
   router.currentRoute.value.matched.flatMap(record =>