jcloud/dashboard/src2/components/site/AnalyticsCard.vue
2025-04-12 17:39:38 +08:00

16 lines
351 B
Vue

<template>
<div class="rounded-md border">
<div class="flex h-12 items-center justify-between border-b px-5">
<h3 class="text-lg font-medium text-gray-900">{{ title }}</h3>
<slot name="action"></slot>
</div>
<slot></slot>
</div>
</template>
<script>
export default {
name: 'AnalyticsCard',
props: ['title']
};
</script>