2023-05-30 11:49:32 +08:00

31 lines
659 B
Vue

<template>
<component class="tmagic-design-card" :is="uiComponent" v-bind="uiProps">
<template #header>
<slot name="header" class="header"></slot>
</template>
<template #default>
<slot name="default"></slot>
</template>
</component>
</template>
<script setup lang="ts">
import { computed } from 'vue';
import { getConfig } from './config';
import type { CardProps } from './types';
defineOptions({
name: 'TMCard',
});
const props = defineProps<CardProps>();
const ui = getConfig('components')?.card;
const uiComponent = ui?.component || 'el-card';
const uiProps = computed(() => ui?.props(props) || props);
</script>