frontend/components/ui/alert-dialog/AlertDialogTrigger.vue
2024-12-01 17:20:21 +01:00

12 lines
267 B
Vue

<script setup lang="ts">
import { AlertDialogTrigger, type AlertDialogTriggerProps } from "radix-vue";
const props = defineProps<AlertDialogTriggerProps>();
</script>
<template>
<AlertDialogTrigger v-bind="props">
<slot />
</AlertDialogTrigger>
</template>