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

15 lines
324 B
Vue

import PropTypes from '../_util/vue-types';
const ILazyRenderBoxPropTypes = {
visible: PropTypes.bool,
hiddenClassName: PropTypes.string,
forceRender: PropTypes.bool,
};
export default {
props: ILazyRenderBoxPropTypes,
render() {
return <div {...{ on: this.$listeners }}>{this.$slots.default}</div>;
},
};