UNPKG

mapomodule

Version:

Mapo is a nuxt module that helps in the creation of Administration Panels.

7 lines 223 B
import type { ComputedRef, MaybeRef } from 'vue' export type LayoutKey = "default" | "empty" declare module 'nuxt/app' { interface PageMeta { layout?: MaybeRef<LayoutKey | false> | ComputedRef<LayoutKey | false> } }