Files
simrsx-fe/app/components/pub/ui/alert-dialog/AlertDialogTrigger.vue
Munawwirul Jamal 3eb9dde21d Dev cleaning (#106)
2025-10-08 00:03:36 +07:00

13 lines
292 B
Vue

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