global-components.d.ts 287 B

12345678910
  1. import SvgIcon from "@/components/SvgIcon/index.vue"
  2. /** 由 app.component 全局注册的组件需要在这里声明 TS 类型才能获得 Volar 插件提供的类型提示) */
  3. declare module "vue" {
  4. export interface GlobalComponents {
  5. SvgIcon: typeof SvgIcon
  6. }
  7. }
  8. export {}