perf: 代码优化 新增 global-components.d.ts 全局注册组件的类型文件

This commit is contained in:
pany
2023-06-21 10:28:04 +08:00
parent 75eadd2094
commit 07bde250ff
3 changed files with 13 additions and 3 deletions

10
types/global-components.d.ts vendored Normal file
View File

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