news-analyze/components/ui/dialog/DialogClose.vue
2025-05-10 22:05:10 +08:00

11 lines
230 B
Vue

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