Skip to content

Global Component Types

山吹色御守 edited this page Jul 1, 2025 · 3 revisions

After registering your global components you can register them in the GlobalComponents interface.

Type declaration

Add a declaration file, eg. components.d.ts:

declare module 'vue' {
  export interface GlobalComponents {
    Test: typeof import('./src/Test.vue')['default'];
  }
}

export {};
Clone this wiki locally