mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
19 lines
738 B
Vue
19 lines
738 B
Vue
<script lang="ts" setup>
|
|
import { Toaster as Sonner, type ToasterProps } from "vue-sonner";
|
|
|
|
const props = defineProps<ToasterProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<Sonner class="toaster group" v-bind="props" :toast-options="{
|
|
classes: {
|
|
toast: 'group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg',
|
|
description: 'group-[.toast]:text-muted-foreground',
|
|
actionButton:
|
|
'group-[.toast]:bg-primary group-[.toast]:text-primary-foreground',
|
|
cancelButton:
|
|
'group-[.toast]:bg-muted group-[.toast]:text-muted-foreground',
|
|
},
|
|
}" :position="'top-right'" />
|
|
</template>
|