You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
import { defineComponent, inject } from 'vue';
|
|
import PropTypes from '../_util/vue-types';
|
|
import { getComponent } from '../_util/props-util';
|
|
import { defaultConfigProvider } from '../config-provider';
|
|
|
|
export default defineComponent({
|
|
name: 'ACardMeta',
|
|
props: {
|
|
prefixCls: PropTypes.string,
|
|
title: PropTypes.VNodeChild,
|
|
description: PropTypes.VNodeChild,
|
|
avatar: PropTypes.VNodeChild,
|
|
},
|
|
setup() {
|
|
return {
|
|
configProvider: inject('configProvider', defaultConfigProvider),
|
|
};
|
|
},
|
|
render() {
|
|
const { prefixCls: customizePrefixCls } = this.$props;
|
|
|
|
const { getPrefixCls } = this.configProvider;
|
|
const prefixCls = getPrefixCls('card', customizePrefixCls);
|
|
|
|
const classString = {
|
|
[`${prefixCls}-meta`]: true,
|
|
};
|
|
|
|
const avatar = getComponent(this, 'avatar');
|
|
const title = getComponent(this, 'title');
|
|
const description = getComponent(this, 'description');
|
|
|
|
const avatarDom = avatar ? <div class={`${prefixCls}-meta-avatar`}>{avatar}</div> : null;
|
|
const titleDom = title ? <div class={`${prefixCls}-meta-title`}>{title}</div> : null;
|
|
const descriptionDom = description ? (
|
|
<div class={`${prefixCls}-meta-description`}>{description}</div>
|
|
) : null;
|
|
const MetaDetail =
|
|
titleDom || descriptionDom ? (
|
|
<div class={`${prefixCls}-meta-detail`}>
|
|
{titleDom}
|
|
{descriptionDom}
|
|
</div>
|
|
) : null;
|
|
return (
|
|
<div class={classString}>
|
|
{avatarDom}
|
|
{MetaDetail}
|
|
</div>
|
|
);
|
|
},
|
|
});
|