setPageLayout
setPageLayout 允许你动态地更改页面的布局。
setPageLayout
允许你动态地更改页面的布局。它依赖于访问 Nuxt 上下文,因此只能在 Nuxt 上下文内调用。middleware/custom-layout.ts
export default defineNuxtRouteMiddleware((to) => {
// Set the layout on the route you are navigating _to_
setPageLayout('other')
})
如果你选择在服务端动态设置布局,*必须*在 Vue 渲染布局之前(即在插件或路由中间件中)进行设置,以避免水合不匹配。