13 lines
292 B
Vue
13 lines
292 B
Vue
<script setup lang="ts">
|
|
import type { AlertDialogTriggerProps } from 'radix-vue'
|
|
import { AlertDialogTrigger } from 'radix-vue'
|
|
|
|
const props = defineProps<AlertDialogTriggerProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<AlertDialogTrigger v-bind="props">
|
|
<slot />
|
|
</AlertDialogTrigger>
|
|
</template>
|