1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <script setup lang="ts">
| import type { DialogRootEmits, DialogRootProps } from 'radix-vue';
|
| import { DialogRoot, useForwardPropsEmits } from 'radix-vue';
|
| const props = defineProps<DialogRootProps>();
| const emits = defineEmits<DialogRootEmits>();
|
| const forwarded = useForwardPropsEmits(props, emits);
| </script>
|
| <template>
| <DialogRoot v-bind="forwarded">
| <slot></slot>
| </DialogRoot>
| </template>
|
|