mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-25 16:19:38 +02:00
14 lines
376 B
Vue
14 lines
376 B
Vue
<script setup lang="ts">
|
|
import { DialogRoot, type DialogRootEmits, type DialogRootProps, useForwardPropsEmits } 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>
|