UNPKG

mapomodule

Version:

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

7 lines 257 B
import type { NavigationGuard } from 'vue-router' export type MiddlewareKey = "auth" | "roles" | "permissions" declare module 'nuxt/app' { interface PageMeta { middleware?: MiddlewareKey | NavigationGuard | Array<MiddlewareKey | NavigationGuard> } }