ant-design-vue/components/vc-dialog/LazyRenderBox.jsx
2018-03-19 10:47:23 +08:00

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>
)
},
}