Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-21 11:29:20 +08:00
v3-admin-vite/types/global-components.d.ts

11 lines
287 B
TypeScript
Raw Permalink Normal View History

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