gohttpdUi/types/components.d.ts

9 lines
232 B
TypeScript
Raw Normal View History

declare module 'vue' {
export interface GlobalComponents {
2023-12-19 09:46:22 +08:00
Icon: (typeof import('../components/Icon/src/Icon.vue'))['default']
BaseButton: (typeof import('../components/Button/src/Button.vue'))['default']
}
}
export {}