We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
After registering your global components you can register them in the GlobalComponents interface.
GlobalComponents
Add a declaration file, eg. globals.d.ts:
globals.d.ts
import {default as Test} from './src/Test.vue' export {} declare module 'vue' { export interface GlobalComponents { Test: typeof Test } }