2024-11-30 00:58:04 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import {
|
|
|
|
|
DialogRoot,
|
|
|
|
|
type DialogRootEmits,
|
|
|
|
|
type DialogRootProps,
|
|
|
|
|
useForwardPropsEmits,
|
2025-03-28 01:16:24 +01:00
|
|
|
} from "reka-ui";
|
2024-11-30 00:58:04 +01:00
|
|
|
|
|
|
|
|
const props = defineProps<DialogRootProps>();
|
|
|
|
|
const emits = defineEmits<DialogRootEmits>();
|
|
|
|
|
|
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-12-09 22:32:22 +01:00
|
|
|
<DialogRoot data-slot="sheet" v-bind="forwarded">
|
2026-01-09 21:47:12 +01:00
|
|
|
<slot />
|
2025-12-09 22:32:22 +01:00
|
|
|
</DialogRoot>
|
2024-11-30 00:58:04 +01:00
|
|
|
</template>
|