mirror of
https://github.com/CorentinTh/it-tools.git
synced 2026-03-26 07:23:02 +00:00
12 lines
242 B
Vue
12 lines
242 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>
|