router.d.ts 157 B

123456789101112
  1. import 'vue-router';
  2. export {};
  3. /* prettier-ignore */
  4. declare module 'vue-router' {
  5. interface RouteMeta {
  6. title?: string;
  7. scan?: boolean;
  8. }
  9. }