ant-design-vue/components/card/Grid.jsx
2019-01-12 12:46:29 +08:00

21 lines
438 B
Vue

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 (
<div {...{ on: this.$listeners }} class={classString}>
{this.$slots.default}
</div>
);
},
};