import PropTypes from '../_util/vue-types'; export default { name: 'ACardGrid', __ANT_CARD_GRID: true, props: { prefixCls: PropTypes.string.def('ant-card'), }, render() { const { prefixCls = 'ant-card' } = this.$props; const classString = { [`${prefixCls}-grid`]: true, }; return (
{this.$slots.default}
); }, };