router.d.ts 4.0 KB

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