mirror of
https://github.com/lukaszraczylo/gohoarder.git
synced 2026-06-05 22:53:53 +00:00
16 lines
390 B
Vue
16 lines
390 B
Vue
<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 v-bind="forwarded">
|
|
<slot />
|
|
</DialogRoot>
|
|
</template>
|