vue-router.d.ts 211 B

123456789101112
  1. import 'vue-router'
  2. declare module 'vue-router' {
  3. interface RouteMeta {
  4. componentName?: string
  5. pinned?: boolean
  6. label?: string
  7. icon?: string
  8. showTab?: boolean
  9. multiTab?: boolean
  10. }
  11. }