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,11 @@
<script setup lang="ts">
import { ToastProvider, type ToastProviderProps } from "radix-vue"
const props = defineProps<ToastProviderProps>()
</script>
<template>
<ToastProvider v-bind="props">
<slot />
</ToastProvider>
</template>