-
-
Notifications
You must be signed in to change notification settings - Fork 460
Global Component Types
山吹色御守 edited this page Jul 1, 2025
·
3 revisions
After registering your global components you can register them in the GlobalComponents
interface.
Add a declaration file, eg. components.d.ts
:
declare module 'vue' {
export interface GlobalComponents {
Test: typeof import('./src/Test.vue')['default'];
}
}
export {};