layouts.d.ts 210 B

1234567
  1. import type { ComputedRef, MaybeRef } from 'vue'
  2. export type LayoutKey = string
  3. declare module 'nuxt/app' {
  4. interface PageMeta {
  5. layout?: MaybeRef<LayoutKey | false> | ComputedRef<LayoutKey | false>
  6. }
  7. }