feat: Give more functionality to note menu

This commit is contained in:
Jesse Wierzbinski 2024-11-30 18:21:40 +01:00
parent 97566289cd
commit 49d356e2ab
No known key found for this signature in database
12 changed files with 95 additions and 35 deletions

View file

@ -0,0 +1,18 @@
<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>

View file

@ -0,0 +1 @@
export { default as Toaster } from "./Sonner.vue";