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