diff --git a/docs/3.api/1.components/2.nuxt-page.md b/docs/3.api/1.components/2.nuxt-page.md index 4556db0cd1..493c5efb1e 100644 --- a/docs/3.api/1.components/2.nuxt-page.md +++ b/docs/3.api/1.components/2.nuxt-page.md @@ -21,8 +21,12 @@ It accepts same `name` and `route` props. - type: `string` - `route`: route location that has all of its components resolved. - type: `RouteLocationNormalized` -- `pageKey:` control when the `NuxtPage` component is re-rendered. +- `pageKey`: control when the `NuxtPage` component is re-rendered. - type: `string` or `function` +- `transition`: define global transitions for all pages rendered with the `NuxtPage` component. + - type: `boolean` or `TransitionProps` +- `keepalive`: control state preservation of pages rendered with the `NuxtPage` component. + - type: `boolean` or `KeepAliveProps` ::callout Nuxt automatically resolves the `name` and `route` by scanning and rendering all Vue component files found in the `/pages` directory.