mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
28 lines
647 B
TypeScript
28 lines
647 B
TypeScript
import {
|
|
Notify as VanNotify,
|
|
showNotify,
|
|
closeNotify,
|
|
setNotifyDefaultOptions,
|
|
resetNotifyDefaultOptions,
|
|
} from 'vant';
|
|
import type { App } from 'vue';
|
|
|
|
export const Notify = (...args: Parameters<typeof showNotify>) =>
|
|
showNotify(...args);
|
|
|
|
Notify.clear = closeNotify;
|
|
Notify.Component = VanNotify;
|
|
Notify.setDefaultOptions = setNotifyDefaultOptions;
|
|
Notify.resetDefaultOptions = resetNotifyDefaultOptions;
|
|
|
|
Notify.install = (app: App) => {
|
|
app.use(Notify.Component);
|
|
app.config.globalProperties.$notify = Notify;
|
|
};
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$notify: typeof Notify;
|
|
}
|
|
}
|