Files
nuxt-mongoose/client/composables/dialog.ts
2023-09-20 19:47:07 +03:00

15 lines
294 B
TypeScript

let _showNotification: typeof showNotification
export function showNotification(data: {
message: string
icon?: string
classes?: string
duration?: number
}) {
_showNotification?.(data)
}
export function provideNotificationFn(fn: typeof showNotification) {
_showNotification = fn
}