13 lines
288 B
Vue
13 lines
288 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import type { AlertDialogTriggerProps } from "reka-ui"
|
||
|
|
import { AlertDialogTrigger } from "reka-ui"
|
||
|
|
|
||
|
|
const props = defineProps<AlertDialogTriggerProps>()
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<AlertDialogTrigger v-bind="props">
|
||
|
|
<slot />
|
||
|
|
</AlertDialogTrigger>
|
||
|
|
</template>
|