router.d.ts 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import type { RouteRecordRaw } from 'vue-router'
  2. import { defineComponent } from 'vue'
  3. /**
  4. * redirect: noredirect 当设置 noredirect 的时候该路由在面包屑导航中不可被点击
  5. * name:'router-name' 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
  6. * meta : {
  7. hidden: true 当设置 true 的时候该路由不会再侧边栏出现 如404,login等页面(默认 false)
  8. alwaysShow: true 当你一个路由下面的 children 声明的路由大于1个时,自动会变成嵌套的模式,
  9. 只有一个时,会将那个子路由当做根路由显示在侧边栏,
  10. 若你想不管路由下面的 children 声明的个数都显示你的根路由,
  11. 你可以设置 alwaysShow: true,这样它就会忽略之前定义的规则,
  12. 一直显示根路由(默认 false)
  13. title: 'title' 设置该路由在侧边栏和面包屑中展示的名字
  14. titleSuffix: '2' 当 path 和 title 重复时的后缀或备注
  15. icon: 'svg-name' 设置该路由的图标
  16. noCache: true 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
  17. breadcrumb: false 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true)
  18. affix: true 如果设置为true,则会一直固定在tag项中(默认 false)
  19. noTagsView: true 如果设置为true,则不会出现在tag中(默认 false)
  20. activeMenu: '/home' 显示高亮的路由路径
  21. followAuth: '/home' 跟随哪个路由进行权限过滤
  22. canTo: true 设置为true即使hidden为true,也依然可以进行路由跳转(默认 false)
  23. }
  24. **/
  25. declare module 'vue-router' {
  26. interface RouteMeta extends Record<string | number | symbol, unknown> {
  27. hidden?: boolean
  28. alwaysShow?: boolean
  29. title?: string
  30. titleSuffix?: string
  31. icon?: string
  32. noCache?: boolean
  33. breadcrumb?: boolean
  34. affix?: boolean
  35. activeMenu?: string
  36. noTagsView?: boolean
  37. followAuth?: string
  38. canTo?: boolean
  39. }
  40. }
  41. type Component<T = any> =
  42. | ReturnType<typeof defineComponent>
  43. | (() => Promise<typeof import('*.vue')>)
  44. | (() => Promise<T>)
  45. declare global {
  46. interface AppRouteRecordRaw extends Omit<RouteRecordRaw, 'meta'> {
  47. name: string
  48. meta: RouteMeta
  49. component?: Component | string
  50. children?: AppRouteRecordRaw[]
  51. props?: Recordable
  52. fullPath?: string
  53. keepAlive?: boolean
  54. }
  55. interface AppCustomRouteRecordRaw extends Omit<RouteRecordRaw, 'meta'> {
  56. icon: any
  57. name: string
  58. meta: RouteMeta
  59. component: string
  60. componentName?: string
  61. path: string
  62. redirect: string
  63. children?: AppCustomRouteRecordRaw[]
  64. keepAlive?: boolean
  65. visible?: boolean
  66. parentId?: number
  67. alwaysShow?: boolean
  68. }
  69. }