mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
12 lines
298 B
Vue
12 lines
298 B
Vue
<script setup lang="ts">
|
|
import { AlertDialogTrigger, type AlertDialogTriggerProps } from "reka-ui";
|
|
|
|
const props = defineProps<AlertDialogTriggerProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<AlertDialogTrigger data-slot="alert-dialog-trigger" v-bind="props">
|
|
<slot />
|
|
</AlertDialogTrigger>
|
|
</template>
|