router.d.ts 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. // 全局路由类型声明
  2. import { type RouteComponent, type RouteLocationNormalized } from "vue-router";
  3. declare global {
  4. interface ToRouteType extends RouteLocationNormalized {
  5. meta: CustomizeRouteMeta;
  6. }
  7. /**
  8. * @description 完整子路由的`meta`配置表
  9. */
  10. interface CustomizeRouteMeta {
  11. /** 菜单名称(兼容国际化、非国际化,如何用国际化的写法就必须在根目录的`locales`文件夹下对应添加) `必填` */
  12. title: string;
  13. /** 菜单图标 `可选` */
  14. icon?: string | FunctionalComponent | IconifyIcon;
  15. /** 菜单名称右侧的额外图标 */
  16. extraIcon?: string | FunctionalComponent | IconifyIcon;
  17. /** 是否在菜单中显示(默认`true`)`可选` */
  18. showLink?: boolean;
  19. /** 是否显示父级菜单 `可选` */
  20. showParent?: boolean;
  21. /** 页面级别权限设置 `可选` */
  22. roles?: Array<string>;
  23. /** 按钮级别权限设置 `可选` */
  24. auths?: Array<string>;
  25. /** 路由组件缓存(开启 `true`、关闭 `false`)`可选` */
  26. keepAlive?: boolean;
  27. /** 内嵌的`iframe`链接 `可选` */
  28. frameSrc?: string;
  29. /** `iframe`页是否开启首次加载动画(默认`true`)`可选` */
  30. frameLoading?: boolean;
  31. /** 页面加载动画(有两种形式,一种直接采用vue内置的`transitions`动画,另一种是使用`animate.css`写进、离场动画)`可选` */
  32. transition?: {
  33. /**
  34. * @description 当前路由动画效果
  35. * @see {@link https://next.router.vuejs.org/guide/advanced/transitions.html#transitions}
  36. * @see animate.css {@link https://animate.style}
  37. */
  38. name?: string;
  39. /** 进场动画 */
  40. enterTransition?: string;
  41. /** 离场动画 */
  42. leaveTransition?: string;
  43. };
  44. // 是否不添加信息到标签页,(默认`false`)
  45. hiddenTag?: boolean;
  46. /** 动态路由可打开的最大数量 `可选` */
  47. dynamicLevel?: number;
  48. /** 将某个菜单激活
  49. * (主要用于通过`query`或`params`传参的路由,当它们通过配置`showLink: false`后不在菜单中显示,就不会有任何菜单高亮,
  50. * 而通过设置`activePath`指定激活菜单即可获得高亮,`activePath`为指定激活菜单的`path`)
  51. */
  52. activePath?: string;
  53. }
  54. /**
  55. * @description 完整子路由配置表
  56. */
  57. interface RouteChildrenConfigsTable {
  58. /** 子路由地址 `必填` */
  59. path: string;
  60. /** 路由名字(对应不要重复,和当前组件的`name`保持一致)`必填` */
  61. name?: string;
  62. /** 路由重定向 `可选` */
  63. redirect?: string;
  64. /** 按需加载组件 `可选` */
  65. component?: RouteComponent;
  66. meta?: CustomizeRouteMeta;
  67. /** 子路由配置项 */
  68. children?: Array<RouteChildrenConfigsTable>;
  69. }
  70. /**
  71. * @description 整体路由配置表(包括完整子路由)
  72. */
  73. interface RouteConfigsTable {
  74. /** 路由地址 `必填` */
  75. path: string;
  76. /** 路由名字(保持唯一)`可选` */
  77. name?: string;
  78. /** `Layout`组件 `可选` */
  79. component?: RouteComponent;
  80. /** 路由重定向 `可选` */
  81. redirect?: string;
  82. meta?: {
  83. /** 菜单名称(兼容国际化、非国际化,如何用国际化的写法就必须在根目录的`locales`文件夹下对应添加)`必填` */
  84. title: string;
  85. /** 菜单图标 `可选` */
  86. icon?: string | FunctionalComponent | IconifyIcon;
  87. /** 是否在菜单中显示(默认`true`)`可选` */
  88. showLink?: boolean;
  89. /** 菜单升序排序,值越高排的越后(只针对顶级路由)`可选` */
  90. rank?: number;
  91. };
  92. /** 子路由配置项 */
  93. children?: Array<RouteChildrenConfigsTable>;
  94. }
  95. }
  96. // https://router.vuejs.org/zh/guide/advanced/meta.html#typescript
  97. declare module "vue-router" {
  98. interface RouteMeta extends CustomizeRouteMeta {}
  99. }