We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
After registering your global components you can register them in the GlobalComponents interface.
GlobalComponents
Add a declaration file, eg. components.d.ts:
components.d.ts
declare module 'vue' { export interface GlobalComponents { Test: typeof import('./src/Test.vue')['default']; } } export {};