123456789101112131415161718192021 |
- import PropTypes from '../_util/vue-types';
- import { getListeners } from '../_util/props-util';
- var ILazyRenderBoxPropTypes = {
- visible: PropTypes.bool,
- hiddenClassName: PropTypes.string,
- forceRender: PropTypes.bool
- };
- export default {
- props: ILazyRenderBoxPropTypes,
- render: function render() {
- var h = arguments[0];
- return h(
- 'div',
- { on: getListeners(this) },
- [this.$slots['default']]
- );
- }
- };
|