mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-22 15:28:57 +00:00
12 lines
250 B
Vue
12 lines
250 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>
|