Files
OCS_service/app/components/ui/popover/PopoverHeader.vue
T
2026-05-23 01:49:15 +08:00

18 lines
326 B
Vue

<script setup lang="ts">
import type { HTMLAttributes } from 'vue'
import { cn } from '@/lib/utils'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
</script>
<template>
<div
data-slot="popover-header"
:class="cn('flex flex-col gap-1 text-sm', props.class)"
>
<slot />
</div>
</template>