21 lines
440 B
Java
21 lines
440 B
Java
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']]
|
|
);
|
|
}
|
|
}; |