vue-router.d.ts 338 B

1234567891011121314
  1. import type { RouteParamsGeneric } from 'vue-router'
  2. declare module 'vue-router' {
  3. interface RouteMeta {
  4. title?: string
  5. icon?: string
  6. componentName?: string
  7. pinned?: boolean
  8. showTab?: boolean
  9. enableMultiTab?: boolean
  10. withKeepAlive?: boolean
  11. renderTabTitle?: (params: RouteParamsGeneric) => string
  12. }
  13. }