mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-05 22:43:18 +00:00
15 lines
268 B
Vue
15 lines
268 B
Vue
<script setup>
|
|
import { DialogClose } from 'reka-ui';
|
|
|
|
const props = defineProps({
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<DialogClose v-bind="props">
|
|
<slot />
|
|
</DialogClose>
|
|
</template>
|