frontend/app/components/ui/alert-dialog/AlertDialog.vue

20 lines
442 B
Vue
Raw Normal View History

<script setup lang="ts">
import {
type AlertDialogEmits,
type AlertDialogProps,
AlertDialogRoot,
useForwardPropsEmits,
} from "reka-ui";
const props = defineProps<AlertDialogProps>();
const emits = defineEmits<AlertDialogEmits>();
const forwarded = useForwardPropsEmits(props, emits);
</script>
<template>
2025-12-09 22:32:22 +01:00
<AlertDialogRoot data-slot="alert-dialog" v-bind="forwarded">
<slot/>
</AlertDialogRoot>
</template>