mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
12 lines
240 B
Vue
12 lines
240 B
Vue
<script setup lang="ts">
|
|
import { DialogTrigger, type DialogTriggerProps } from "reka-ui";
|
|
|
|
const props = defineProps<DialogTriggerProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<DialogTrigger v-bind="props">
|
|
<slot />
|
|
</DialogTrigger>
|
|
</template>
|