]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: typo
authorEduardo San Martin Morote <posva13@gmail.com>
Mon, 14 Jun 2021 14:55:34 +0000 (16:55 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Mon, 14 Jun 2021 14:55:34 +0000 (16:55 +0200)
docs/guide/essentials/navigation.md

index 31eefb146be9c80abd18a621ebc6cf57276c25e4..14b2eb9be0d742e5a93897f2dca739b4e4790215 100644 (file)
@@ -51,7 +51,7 @@ router.push({ name: 'user', params: { username } }) // -> /user/eduardo
 router.push({ path: '/user', params: { username } }) // -> /user
 ```
 
-When specifying `params`, make sure to either provide a `string` or `number` (or an array of these for [repeatable params](./oute-matching-syntax.md#repeatable-params)). **Any other type (like `undefined`, `false`, etc) will be automatically stringified**. For [optional params](./route-matching-syntax.md#repeatable-params), you can provide an empty string (`""`) as the value to skip it.
+When specifying `params`, make sure to either provide a `string` or `number` (or an array of these for [repeatable params](./route-matching-syntax.md#repeatable-params)). **Any other type (like `undefined`, `false`, etc) will be automatically stringified**. For [optional params](./route-matching-syntax.md#repeatable-params), you can provide an empty string (`""`) as the value to skip it.
 
 Since the prop `to` accepts the same kind of object as `router.push`, the exact same rules apply to both of them.