mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 09:21:25 +08:00
16 lines
379 B
Vue
16 lines
379 B
Vue
import PropTypes from '../_util/vue-types';
|
|
import { getListeners } from '../_util/props-util';
|
|
|
|
const ILazyRenderBoxPropTypes = {
|
|
visible: PropTypes.bool,
|
|
hiddenClassName: PropTypes.string,
|
|
forceRender: PropTypes.bool,
|
|
};
|
|
|
|
export default {
|
|
props: ILazyRenderBoxPropTypes,
|
|
render() {
|
|
return <div {...{ on: getListeners(this) }}>{this.$slots.default}</div>;
|
|
},
|
|
};
|