<script setup lang="ts">
|
import type { DialogDescriptionProps } from 'radix-vue';
|
|
import { computed } from 'vue';
|
|
import { cn } from '@vben-core/shared/utils';
|
|
import { DialogDescription } from 'radix-vue';
|
|
const props = defineProps<DialogDescriptionProps & { class?: any }>();
|
|
const delegatedProps = computed(() => {
|
const { class: _, ...delegated } = props;
|
|
return delegated;
|
});
|
</script>
|
|
<template>
|
<DialogDescription
|
:class="cn('text-muted-foreground text-sm', props.class)"
|
v-bind="delegatedProps"
|
>
|
<slot></slot>
|
</DialogDescription>
|
</template>
|