mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 01:11:53 +08:00
14 lines
293 B
Vue
14 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 {...{ on: this.$listeners }}>{this.$slots.default}</div>;
|
|
},
|
|
};
|