vue-router.d.ts 279 B

123456789
  1. /* eslint-disable no-restricted-imports */
  2. import type { RouteMeta as IRouteMeta } from '@vben-core/typings';
  3. import 'vue-router';
  4. declare module 'vue-router' {
  5. // eslint-disable-next-line @typescript-eslint/no-empty-object-type
  6. interface RouteMeta extends IRouteMeta {}
  7. }