-
-
Notifications
You must be signed in to change notification settings - Fork 443
Global Component Types
David Matter edited this page Aug 29, 2024
·
2 revisions
After registering your global components you can register them in the GlobalComponents
interface.
Add a declaration file, eg. globals.d.ts
:
import {default as Test} from './src/Test.vue'
export {}
declare module 'vue' {
export interface GlobalComponents {
Test: typeof Test
}
}