mirror of
https://github.com/ZeroCatDev/ClassworksKVAdmin.git
synced 2025-10-22 03:23:10 +00:00
15 lines
301 B
Vue
15 lines
301 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>
|