frontend/components/ui/alert-dialog/AlertDialogTrigger.vue

12 lines
267 B
Vue
Raw Normal View History

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