mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 16:22:16 +01:00
12 lines
273 B
Vue
12 lines
273 B
Vue
<script setup lang="ts">
|
|
import { AlertDialogTrigger, type AlertDialogTriggerProps } from 'reka-ui';
|
|
|
|
const props = defineProps<AlertDialogTriggerProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<AlertDialogTrigger v-bind="props">
|
|
<slot />
|
|
</AlertDialogTrigger>
|
|
</template>
|