docs: add `name` param to `PageMeta` interface description (#23107)

This commit is contained in:
Maxim 2023-09-11 01:40:13 +02:00 committed by GitHub
parent 5e33d316aa
commit a07b34a6ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,7 @@ definePageMeta(meta: PageMeta) => void
interface PageMeta {
validate?: (route: RouteLocationNormalized) => boolean | Promise<boolean> | Partial<NuxtError> | Promise<Partial<NuxtError>>
redirect?: RouteRecordRedirectOption
name?: string
path?: string
alias?: string | string[]
pageTransition?: boolean | TransitionProps
@ -46,6 +47,12 @@ interface PageMeta {
An object accepting the following page metadata:
**`name`**
- **Type**: `string`
You may define a name for this page's route. By default, name is generated based on path inside the [`pages/` directory](/docs/guide/directory-structure/pages).
**`path`**
- **Type**: `string`