We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3ed4d9 commit 479510bCopy full SHA for 479510b
docs/guide/essentials/named-routes.md
@@ -20,7 +20,7 @@ To link to a named route, you can pass an object to the `router-link` component'
20
<router-link :to="{ name: 'user', params: { userId: 123 }}">User</router-link>
21
```
22
23
-This is the exact same object used programatically with `router.push()`:
+This is the exact same object used programmatically with `router.push()`:
24
25
``` js
26
router.push({ name: 'user', params: { userId: 123 }})
0 commit comments