gaoluyang
2026-06-26 d6591b74a276a7863786e4cfeb54f8c0e09d55f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script setup lang="ts">
import { Card, CardContent, CardHeader, CardTitle } from '../../../../../../@core/ui-kit/shadcn-ui/src';
 
interface Props {
  title: string;
}
 
defineOptions({
  name: 'AnalysisChartCard',
});
 
withDefaults(defineProps<Props>(), {});
</script>
 
<template>
  <Card>
    <CardHeader>
      <CardTitle class="text-xl">{{ title }}</CardTitle>
    </CardHeader>
    <CardContent>
      <slot></slot>
    </CardContent>
  </Card>
</template>