router.d.ts 644 B

1234567891011121314151617181920212223242526272829
  1. //the ts of router
  2. import { RouteRecordRaw } from 'vue-router'
  3. /*此处扩展的类型*/
  4. export interface RouteItemTy {
  5. hidden?: boolean
  6. alwaysShow?: boolean
  7. code?: number
  8. name?: string
  9. fullPath?: string
  10. path?: string
  11. meta?: {
  12. title: string
  13. icon?: string
  14. affix?: boolean
  15. activeMenu?: string
  16. breadcrumb?: boolean
  17. roles?: Array<string>
  18. elSvgIcon?: string
  19. code?: number
  20. cachePage?: boolean
  21. leaveRmCachePage?: boolean
  22. closeTabRmCache?: boolean
  23. }
  24. children?: RouterTy
  25. redirect?: string
  26. }
  27. export type RouterRowTy = RouteRecordRaw & RouteItemTy
  28. export type RouterTy = Array<RouterRowTy>