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 ?
: null; const titleDom = title ? : null; const descriptionDom = description ? ( ) : null; const MetaDetail = titleDom || descriptionDom ? ( ) : null; return (