ant-design-vue/components/vc-dialog/LazyRenderBox.jsx

20 lines
293 B
Vue
Raw Normal View History

2018-03-19 10:16:27 +08:00
2018-03-05 19:05:23 +08:00
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>
)
},
}