mirror of
https://github.com/woodchen-ink/md-wechat.git
synced 2025-07-19 06:02:02 +08:00
12 lines
240 B
Vue
12 lines
240 B
Vue
<script setup lang="ts">
|
|
import { DialogTrigger, type DialogTriggerProps } from 'radix-vue'
|
|
|
|
const props = defineProps<DialogTriggerProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<DialogTrigger v-bind="props">
|
|
<slot />
|
|
</DialogTrigger>
|
|
</template>
|