Files
arthome/app/composables/toasts.ts
2024-08-25 18:33:37 +02:00

22 lines
407 B
TypeScript

export function useSuccessToast(title: string, description?: string) {
const toast = useToast()
toast.add({
title,
description,
color: 'green',
icon: 'i-ph:check-circle-duotone',
})
}
export function useErrorToast(title: string, description?: string) {
const toast = useToast()
toast.add({
title,
description,
color: 'red',
icon: 'i-ph:x-circle-duotone',
})
}