domain.d.ts 222 B

123456789101112
  1. declare module '*.vue' {
  2. import type { DefineComponent } from 'vue'
  3. const component: DefineComponent<{}, {}, any>
  4. export default component
  5. }
  6. interface UserInfo {
  7. userName: string
  8. token: string
  9. area: string
  10. }