diff --git a/components/lib/accordion/Accordion.d.ts b/components/lib/accordion/Accordion.d.ts index eba03e0d0..75ca204d3 100755 --- a/components/lib/accordion/Accordion.d.ts +++ b/components/lib/accordion/Accordion.d.ts @@ -232,8 +232,8 @@ export interface AccordionEmits { */ declare class Accordion extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { Accordion: GlobalComponentConstructor; } } diff --git a/components/lib/accordiontab/AccordionTab.d.ts b/components/lib/accordiontab/AccordionTab.d.ts index d97c144a5..f7ad00874 100755 --- a/components/lib/accordiontab/AccordionTab.d.ts +++ b/components/lib/accordiontab/AccordionTab.d.ts @@ -226,8 +226,8 @@ export interface AccordionTabEmits {} */ declare class AccordionTab extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { AccordionTab: GlobalComponentConstructor; } } diff --git a/components/lib/autocomplete/AutoComplete.d.ts b/components/lib/autocomplete/AutoComplete.d.ts index 52165051b..e2c9dabeb 100755 --- a/components/lib/autocomplete/AutoComplete.d.ts +++ b/components/lib/autocomplete/AutoComplete.d.ts @@ -776,8 +776,8 @@ export interface AutoCompleteEmits { */ declare class AutoComplete extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { AutoComplete: GlobalComponentConstructor; } } diff --git a/components/lib/avatar/Avatar.d.ts b/components/lib/avatar/Avatar.d.ts index 99784b607..bf8341f8a 100644 --- a/components/lib/avatar/Avatar.d.ts +++ b/components/lib/avatar/Avatar.d.ts @@ -163,8 +163,8 @@ export interface AvatarEmits { */ declare class Avatar extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { Avatar: GlobalComponentConstructor; } } diff --git a/components/lib/avatargroup/AvatarGroup.d.ts b/components/lib/avatargroup/AvatarGroup.d.ts index 978fdead4..fa171ea43 100644 --- a/components/lib/avatargroup/AvatarGroup.d.ts +++ b/components/lib/avatargroup/AvatarGroup.d.ts @@ -112,8 +112,8 @@ export interface AvatarGroupEmits {} */ declare class AvatarGroup extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { AvatarGroup: GlobalComponentConstructor; } } diff --git a/components/lib/badge/Badge.d.ts b/components/lib/badge/Badge.d.ts index 1d165b7fc..092031ec0 100644 --- a/components/lib/badge/Badge.d.ts +++ b/components/lib/badge/Badge.d.ts @@ -120,8 +120,8 @@ export interface BadgeEmits {} */ declare class Badge extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { Badge: GlobalComponentConstructor; } } diff --git a/components/lib/blockui/BlockUI.d.ts b/components/lib/blockui/BlockUI.d.ts index a28e019e8..2edda21d6 100755 --- a/components/lib/blockui/BlockUI.d.ts +++ b/components/lib/blockui/BlockUI.d.ts @@ -160,8 +160,8 @@ export interface BlockUIEmits { */ declare class BlockUI extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { BlockUI: GlobalComponentConstructor; } } diff --git a/components/lib/breadcrumb/Breadcrumb.d.ts b/components/lib/breadcrumb/Breadcrumb.d.ts index eab425c6d..77e87024f 100755 --- a/components/lib/breadcrumb/Breadcrumb.d.ts +++ b/components/lib/breadcrumb/Breadcrumb.d.ts @@ -232,8 +232,8 @@ export interface BreadcrumbEmits {} */ declare class Breadcrumb extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { Breadcrumb: GlobalComponentConstructor; } } diff --git a/components/lib/button/Button.d.ts b/components/lib/button/Button.d.ts index eae282387..ffad1880b 100755 --- a/components/lib/button/Button.d.ts +++ b/components/lib/button/Button.d.ts @@ -243,8 +243,8 @@ export interface ButtonEmits {} */ declare class Button extends ClassComponent {} -declare module '@vue/runtime-core' { - interface GlobalComponents { +declare module 'vue' { + export interface GlobalComponents { Button: GlobalComponentConstructor - + - - -