mirror of
https://github.com/versia-pub/frontend.git
synced 2026-06-14 15:39:15 +02:00
11 lines
275 B
Vue
11 lines
275 B
Vue
<script setup lang="ts">
|
|
import { DialogTrigger, type DialogTriggerProps } from "reka-ui";
|
|
|
|
const props = defineProps<DialogTriggerProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<DialogTrigger data-slot="dialog-trigger" v-bind="props">
|
|
<slot />
|
|
</DialogTrigger>
|
|
</template>
|