mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-23 15:58:57 +00:00
15 lines
384 B
Vue
15 lines
384 B
Vue
<script setup lang="ts">
|
|
import { DialogRoot, useForwardPropsEmits, type DialogRootEmits, type DialogRootProps } from 'radix-vue';
|
|
|
|
const props = defineProps<DialogRootProps>();
|
|
const emits = defineEmits<DialogRootEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<DialogRoot v-bind="forwarded">
|
|
<slot />
|
|
</DialogRoot>
|
|
</template>
|