You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
591 B
23 lines
591 B
import PropTypes from '../_util/vue-types';
|
|
|
|
export default {
|
|
name: 'LazyRenderBox',
|
|
inheritAttrs: false,
|
|
props: {
|
|
visible: PropTypes.bool,
|
|
hiddenClassName: PropTypes.string,
|
|
},
|
|
render() {
|
|
const { hiddenClassName } = this.$props;
|
|
const child = this.$slots.default && this.$slots.default();
|
|
if (hiddenClassName || (child && child.length > 1)) {
|
|
// const cls = '';
|
|
// if (!visible && hiddenClassName) {
|
|
// // cls += ` ${hiddenClassName}`
|
|
// }
|
|
return <div {...this.$attrs}>{child}</div>;
|
|
}
|
|
return child && child[0];
|
|
},
|
|
};
|