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.
|
|
|
import PropTypes from '../_util/vue-types';
|
|
|
|
import { getComponentFromProp } from '../_util/props-util';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ACardMeta',
|
|
|
|
props: {
|
|
|
|
prefixCls: PropTypes.string.def('ant-card'),
|
|
|
|
title: PropTypes.any,
|
|
|
|
description: PropTypes.any,
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
const { prefixCls = 'ant-card' } = this.$props;
|
|
|
|
const classString = {
|
|
|
|
[`${prefixCls}-meta`]: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
const avatar = getComponentFromProp(this, 'avatar');
|
|
|
|
const title = getComponentFromProp(this, 'title');
|
|
|
|
const description = getComponentFromProp(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 {...{ on: this.$listeners }} class={classString}>
|
|
|
|
{avatarDom}
|
|
|
|
{MetaDetail}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
};
|