Files
solidtime/resources/js/Components/ui/alert-dialog/AlertDialogTrigger.vue

12 lines
273 B
Vue

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