mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types: fix ComponentCustomProperties
This commit is contained in:
parent
e2c082b204
commit
0acbc6ec21
6
types/dialog.d.ts
vendored
6
types/dialog.d.ts
vendored
@ -15,7 +15,7 @@ export type DialogOptions = {
|
|||||||
transition?: string;
|
transition?: string;
|
||||||
messageAlign?: string;
|
messageAlign?: string;
|
||||||
overlayClass?: string;
|
overlayClass?: string;
|
||||||
overlayStyle?: object;
|
overlayStyle?: Record<string, any>;
|
||||||
closeOnPopstate?: boolean;
|
closeOnPopstate?: boolean;
|
||||||
cancelButtonText?: string;
|
cancelButtonText?: string;
|
||||||
cancelButtonColor?: string;
|
cancelButtonColor?: string;
|
||||||
@ -39,8 +39,8 @@ export interface Dialog {
|
|||||||
Component: typeof VanComponent;
|
Component: typeof VanComponent;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'vue/types/vue' {
|
declare module '@vue/runtime-core' {
|
||||||
interface Vue {
|
interface ComponentCustomProperties {
|
||||||
$dialog: Dialog;
|
$dialog: Dialog;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
4
types/notify.d.ts
vendored
4
types/notify.d.ts
vendored
@ -34,8 +34,8 @@ export interface Notify {
|
|||||||
Component: typeof VanComponent;
|
Component: typeof VanComponent;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'vue/types/vue' {
|
declare module '@vue/runtime-core' {
|
||||||
interface Vue {
|
interface ComponentCustomProperties {
|
||||||
$notify: Notify;
|
$notify: Notify;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
4
types/toast.d.ts
vendored
4
types/toast.d.ts
vendored
@ -50,8 +50,8 @@ export interface Toast {
|
|||||||
allowMultiple(allow: boolean): void;
|
allowMultiple(allow: boolean): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'vue/types/vue' {
|
declare module '@vue/runtime-core' {
|
||||||
interface Vue {
|
interface ComponentCustomProperties {
|
||||||
$toast: Toast;
|
$toast: Toast;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user