mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-24 00:01:03 +08:00
20 lines
383 B
Vue
20 lines
383 B
Vue
<script setup lang="ts">
|
|
import {
|
|
DialogRoot,
|
|
type DialogRootEmits,
|
|
type DialogRootProps,
|
|
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>
|