diff --git a/types/dialog.d.ts b/types/dialog.d.ts index 7793f5102..9073da892 100644 --- a/types/dialog.d.ts +++ b/types/dialog.d.ts @@ -15,7 +15,7 @@ export type DialogOptions = { transition?: string; messageAlign?: string; overlayClass?: string; - overlayStyle?: object; + overlayStyle?: Record; closeOnPopstate?: boolean; cancelButtonText?: string; cancelButtonColor?: string; @@ -39,8 +39,8 @@ export interface Dialog { Component: typeof VanComponent; } -declare module 'vue/types/vue' { - interface Vue { +declare module '@vue/runtime-core' { + interface ComponentCustomProperties { $dialog: Dialog; } } diff --git a/types/notify.d.ts b/types/notify.d.ts index 0bef54afb..6bd30b9ee 100644 --- a/types/notify.d.ts +++ b/types/notify.d.ts @@ -34,8 +34,8 @@ export interface Notify { Component: typeof VanComponent; } -declare module 'vue/types/vue' { - interface Vue { +declare module '@vue/runtime-core' { + interface ComponentCustomProperties { $notify: Notify; } } diff --git a/types/toast.d.ts b/types/toast.d.ts index 6697cb7a4..013525234 100644 --- a/types/toast.d.ts +++ b/types/toast.d.ts @@ -50,8 +50,8 @@ export interface Toast { allowMultiple(allow: boolean): void; } -declare module 'vue/types/vue' { - interface Vue { +declare module '@vue/runtime-core' { + interface ComponentCustomProperties { $toast: Toast; } }