mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 03:57:03 -04:00
8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
import { defineNuxtRouteMiddleware, setPageLayout } from 'nuxt/app';
|
|
|
|
export default defineNuxtRouteMiddleware((to) => {
|
|
if (to.query.layout === 'basic') {
|
|
setPageLayout('basic');
|
|
}
|
|
});
|