Skip to main content
You can use <NuxtLayout /> component to activate the default layout on app.vue or error.vue.
[app/app.vue]

Props

string | false
default:"default"
Specify a layout name to be rendered, can be a string, reactive reference or a computed property. It must match the name of the corresponding layout file in the app/layouts/ directory, or false to disable the layout.
[app/pages/index.vue]
Please note the layout name is normalized to kebab-case, so if your layout file is named errorLayout.vue, it will become error-layout when passed as a name property to <NuxtLayout />.
[error.vue]
string
default:"null"
If an invalid layout is passed to the name prop, no layout will be rendered. Specify a fallback layout to be rendered in this scenario. It must match the name of the corresponding layout file in the app/layouts/ directory.

Additional Props

NuxtLayout also accepts any additional props that you may need to pass to the layout. These custom props are then made accessible as attributes.
[app/pages/some-page.vue]
In the above example, the value of title will be available using $attrs.title in the template or useAttrs().title in <script setup> at custom.vue.
[app/layouts/custom.vue]

Transitions

<NuxtLayout /> renders incoming content via <slot />, which is then wrapped around Vue’s <Transition /> component to activate layout transition. For this to work as expected, it is recommended that <NuxtLayout /> is not the root element of the page component.

Layout’s Ref

To get the ref of a layout component, access it through ref.value.layoutRef.