Skip to content

Commit

Permalink
docs: fix spelling of programmatically (#3058)
Browse files Browse the repository at this point in the history
  • Loading branch information
Opinion authored and posva committed Dec 9, 2019
1 parent b3ed4d9 commit 479510b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/essentials/named-routes.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To link to a named route, you can pass an object to the `router-link` component'
<router-link :to="{ name: 'user', params: { userId: 123 }}">User</router-link>
```

This is the exact same object used programatically with `router.push()`:
This is the exact same object used programmatically with `router.push()`:

``` js
router.push({ name: 'user', params: { userId: 123 }})
Expand Down

0 comments on commit 479510b

Please sign in to comment.