mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
20 lines
293 B
Vue
20 lines
293 B
Vue
|
|
import PropTypes from '../_util/vue-types'
|
|
|
|
const ILazyRenderBoxPropTypes = {
|
|
visible: PropTypes.bool,
|
|
hiddenClassName: PropTypes.string,
|
|
}
|
|
|
|
export default {
|
|
props: ILazyRenderBoxPropTypes,
|
|
render () {
|
|
return (
|
|
<div>
|
|
{this.$slots.default}
|
|
</div>
|
|
)
|
|
},
|
|
}
|
|
|