[Vuejs]-How to adjust the type of Nuxt Route Middleware with Typescript?

0👍

declare module '#app' {
  interface PageMeta {
    auth: TAuthVariant;
  }
}

worked

Leave a comment