| 123456789101112131415161718 |
- <script setup lang="ts">
- import type { DialogRootEmits, DialogRootProps } from "reka-ui"
- import { DialogRoot, useForwardPropsEmits } from "reka-ui"
- const props = defineProps<DialogRootProps>()
- const emits = defineEmits<DialogRootEmits>()
- const forwarded = useForwardPropsEmits(props, emits)
- </script>
- <template>
- <DialogRoot
- data-slot="sheet"
- v-bind="forwarded"
- >
- <slot />
- </DialogRoot>
- </template>
|