Added toast from shadcn

This commit is contained in:
Alexis
2024-09-08 18:10:54 +02:00
parent 680e5fe35c
commit a69553e089
10 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
import { computed } from "vue"
import { ToastRoot, type ToastRootEmits, useForwardPropsEmits } from "radix-vue"
import { type ToastProps, toastVariants } from "."
import { cn } from "@/lib/utils"
const props = defineProps<ToastProps>()
const emits = defineEmits<ToastRootEmits>()
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props
return delegated
})
const forwarded = useForwardPropsEmits(delegatedProps, emits)
</script>
<template>
<ToastRoot
v-bind="forwarded"
:class="cn(toastVariants({ variant }), props.class)"
@update:open="onOpenChange"
>
<slot />
</ToastRoot>
</template>