vue-router.d.ts 209 B

12345678
  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. interface RouteMeta extends IRouteMeta {}
  6. }