mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-23 08:43:50 +02:00
15 lines
332 B
Vue
15 lines
332 B
Vue
<script setup>
|
|
import { DialogTrigger } from 'reka-ui';
|
|
|
|
const props = defineProps({
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<DialogTrigger data-slot="dialog-trigger" v-bind="props">
|
|
<slot />
|
|
</DialogTrigger>
|
|
</template>
|