router.d.ts 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. icon: 'svg-name' 设置该路由的图标
  15. noCache: true 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
  16. breadcrumb: false 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true)
  17. affix: true 如果设置为true,则会一直固定在tag项中(默认 false)
  18. noTagsView: true 如果设置为true,则不会出现在tag中(默认 false)
  19. activeMenu: '/dashboard' 显示高亮的路由路径
  20. followAuth: '/dashboard' 跟随哪个路由进行权限过滤
  21. canTo: true 设置为true即使hidden为true,也依然可以进行路由跳转(默认 false)
  22. followRoute: '/dashboard' 为路由设置跟随其他路由的权限
  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. icon?: string
  31. noCache?: boolean
  32. breadcrumb?: boolean
  33. affix?: boolean
  34. activeMenu?: string
  35. noTagsView?: boolean
  36. followAuth?: string
  37. canTo?: boolean
  38. followRoute?: string
  39. }
  40. }
  41. type Component<T = any> =
  42. | ReturnType<typeof defineComponent>
  43. | (() => Promise<typeof import('*.vue')>)
  44. | (() => Promise<T>)
  45. declare global {
  46. declare 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. }
  54. }