mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
3ec108493d
* docs: simplify docs to only markdown * Create nuxt-config.md * chore: update * chore: add readme
18 lines
677 B
Markdown
18 lines
677 B
Markdown
---
|
|
description: setPageLayout allows you to dynamically change the layout of a page.
|
|
---
|
|
# `setPageLayout`
|
|
|
|
`setPageLayout` allows you to dynamically change the layout of a page. It relies on access to the Nuxt context and can only be called within components' setup functions, plugins, and route middleware.
|
|
|
|
```ts
|
|
export default defineNuxtRouteMiddleware((to) => {
|
|
// Set the layout on the route you are navigating _to_
|
|
setPageLayout('other')
|
|
})
|
|
```
|
|
|
|
::alert{icon=👉}
|
|
If you choose to set the layout dynamically on the server side, you _must_ do so before the layout is rendered by Vue (that is, within a plugin or route middleware) to avoid a hydration mismatch.
|
|
::
|