router.d.ts 305 B

1234567891011121314
  1. import 'vue-router'
  2. declare module 'vue-router' {
  3. // 扩展 RouteMeta
  4. interface RouteMeta {
  5. type?: string
  6. perms?: string
  7. title?: string
  8. icon?: string
  9. hidden?: boolean
  10. activeMenu?: string
  11. hideTab?: boolean
  12. keepAlive?: boolean
  13. }
  14. }