store.d.ts 760 B

1234567891011121314151617181920212223242526272829
  1. // the ts file of vuex
  2. import { RouterTy } from '@/types/router'
  3. import { ObjTy } from '@/types/common'
  4. export interface StateTy {
  5. app: AppTy
  6. permission: PermissionTy
  7. user: UserTy
  8. }
  9. export interface UserTy {
  10. username: string
  11. avatar: string
  12. roles: Array<string>
  13. }
  14. export interface AppTy {
  15. sidebar: {
  16. opened: boolean
  17. //opened: Cookies.get('sidebarStatus') ? !!+Cookies.get('sidebarStatus') : true,
  18. // withoutAnimation: false
  19. }
  20. device: string
  21. settings: ObjTy
  22. cachedViews: Array<string>
  23. cachedViewsDeep: Array<string>
  24. }
  25. export interface PermissionTy {
  26. isGetUserInfo: boolean //是否已经设置了权限
  27. routes: RouterTy //将过滤后的异步路由和静态路由集合
  28. addRoutes: RouterTy //过滤后的异步路由
  29. }