mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
Co-authored-by: yongbo.zeng_U+ <yongbo.zeng@united-imaging.com>
This commit is contained in:
parent
04c19453bf
commit
991a7fd5bf
@ -13,7 +13,7 @@ export const Dialog = (...args: Parameters<typeof showDialog>) =>
|
|||||||
|
|
||||||
Dialog.Component = VanDialog;
|
Dialog.Component = VanDialog;
|
||||||
Dialog.alert = Dialog;
|
Dialog.alert = Dialog;
|
||||||
Dialog.config = showConfirmDialog;
|
Dialog.confirm = showConfirmDialog;
|
||||||
Dialog.close = closeDialog;
|
Dialog.close = closeDialog;
|
||||||
Dialog.setDefaultOptions = setDialogDefaultOptions;
|
Dialog.setDefaultOptions = setDialogDefaultOptions;
|
||||||
Dialog.resetDefaultOptions = resetDialogDefaultOptions;
|
Dialog.resetDefaultOptions = resetDialogDefaultOptions;
|
||||||
|
@ -3,6 +3,7 @@ import {
|
|||||||
closeToast,
|
closeToast,
|
||||||
showFailToast,
|
showFailToast,
|
||||||
showSuccessToast,
|
showSuccessToast,
|
||||||
|
showLoadingToast,
|
||||||
allowMultipleToast,
|
allowMultipleToast,
|
||||||
setToastDefaultOptions,
|
setToastDefaultOptions,
|
||||||
resetToastDefaultOptions,
|
resetToastDefaultOptions,
|
||||||
@ -33,6 +34,14 @@ Toast.success = (...args: Parameters<typeof showSuccessToast>) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Toast.loading = (...args: Parameters<typeof showLoadingToast>) => {
|
||||||
|
const toast = showLoadingToast(...args);
|
||||||
|
return {
|
||||||
|
clear: toast.close,
|
||||||
|
...toast,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Toast.clear = closeToast;
|
Toast.clear = closeToast;
|
||||||
Toast.allowMultiple = allowMultipleToast;
|
Toast.allowMultiple = allowMultipleToast;
|
||||||
Toast.setDefaultOptions = setToastDefaultOptions;
|
Toast.setDefaultOptions = setToastDefaultOptions;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user