Files
leim-tools/app/components/ui/toast/Toast.vue
Alexis 7fdab8601f Migration to nuxt 4
Used codemods CLI and reworked most alias'd path that stopped working
2025-07-27 14:30:30 +02:00

29 lines
668 B
Vue

<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>