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