Skip to content

Commit

Permalink
docs: grammar (#3059)
Browse files Browse the repository at this point in the history
minor typos/grammar
  • Loading branch information
Soupedenuit authored and posva committed Dec 9, 2019
1 parent 3b4ec3c commit b3ed4d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ If you add a `target="_blank"` to your `a` element, you must omit the `@click="n

## `<router-view>`

The `<router-view>` component is a functional component that renders the matched component for the given path. Components rendered in `<router-view>` can also contain its own `<router-view>`, which will render components for nested paths.
The `<router-view>` component is a functional component that renders the matched component for the given path. Components rendered in `<router-view>` can also contain their own `<router-view>`, which will render components for nested paths.

Any non-name props will be passed along to the rendered component, however most of the time the per-route data is contained in the route's params.

Since it's just a component, it works with `<transition>` and `<keep-alive>`. When using the both together, make sure to use `<keep-alive>` inside:
Since it's just a component, it works with `<transition>` and `<keep-alive>`. When using them both together, make sure to use `<keep-alive>` inside:

```html
<transition>
Expand Down

0 comments on commit b3ed4d9

Please sign in to comment.