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.alert = Dialog;
|
||||
Dialog.config = showConfirmDialog;
|
||||
Dialog.confirm = showConfirmDialog;
|
||||
Dialog.close = closeDialog;
|
||||
Dialog.setDefaultOptions = setDialogDefaultOptions;
|
||||
Dialog.resetDefaultOptions = resetDialogDefaultOptions;
|
||||
|
@ -3,6 +3,7 @@ import {
|
||||
closeToast,
|
||||
showFailToast,
|
||||
showSuccessToast,
|
||||
showLoadingToast,
|
||||
allowMultipleToast,
|
||||
setToastDefaultOptions,
|
||||
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.allowMultiple = allowMultipleToast;
|
||||
Toast.setDefaultOptions = setToastDefaultOptions;
|
||||
|
Loading…
x
Reference in New Issue
Block a user