mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 20:37:44 +00:00
28 lines
616 B
Vue
28 lines
616 B
Vue
<script setup lang="ts">
|
|
import { computed } from "vue";
|
|
import { type ToastRootEmits, useForwardPropsEmits } from "radix-vue";
|
|
import { type ToastProps } from ".";
|
|
|
|
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>
|