2024-11-27 10:14:30 +08:00
|
|
|
import type SvgIcon from "@@/components/SvgIcon/index.vue"
|
2023-06-21 10:28:04 +08:00
|
|
|
|
2024-11-21 19:52:07 +08:00
|
|
|
export {}
|
|
|
|
|
|
|
|
// 由 app.component 全局注册的组件需要在这里声明 TS 类型才能获得 Volar 插件提供的类型提示)
|
2023-06-21 10:28:04 +08:00
|
|
|
declare module "vue" {
|
|
|
|
export interface GlobalComponents {
|
|
|
|
SvgIcon: typeof SvgIcon
|
|
|
|
}
|
|
|
|
}
|