mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
|
|
import PropTypes from '../_util/vue-types'
|
|
|
|
export default {
|
|
name: 'ACardGrid',
|
|
props: {
|
|
prefixCls: PropTypes.string.def('ant-card'),
|
|
},
|
|
render () {
|
|
const { prefixCls = 'ant-card', ...others } = this.$props
|
|
const classString = {
|
|
[`${prefixCls}-grid`]: true,
|
|
}
|
|
return (
|
|
<div {...others} class={classString}>{this.$slots.default}</div>
|
|
)
|
|
},
|
|
}
|
|
|