shadcn-vue/packages/cli/test/fixtures/nuxt/components/ui/alert-dialog/AlertDialogTrigger.vue
2023-09-19 00:30:11 +08:00

12 lines
265 B
Vue

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