From 0c912920e39c361210210f5e16ebf8096d2be1fe Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 14 Jun 2021 16:06:09 +0200 Subject: [PATCH] docs: note about params type Close #873 --- docs/guide/essentials/navigation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/guide/essentials/navigation.md b/docs/guide/essentials/navigation.md index ee2cc6c3..31eefb14 100644 --- a/docs/guide/essentials/navigation.md +++ b/docs/guide/essentials/navigation.md @@ -51,6 +51,8 @@ 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. + Since the prop `to` accepts the same kind of object as `router.push`, the exact same rules apply to both of them. `router.push` and all the other navigation methods return a _Promise_ that allows us to wait til the navigation is finished and to know if it succeeded or failed. We will talk more about that in [Navigation Handling](../advanced/navigation-failures.md). -- 2.47.3