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.
22 lines
543 B
22 lines
543 B
import PropTypes from '../_util/vue-types';
|
|
import LazyRenderBox from './LazyRenderBox';
|
|
|
|
export default {
|
|
props: {
|
|
hiddenClassName: PropTypes.string.def(''),
|
|
prefixCls: PropTypes.string,
|
|
visible: PropTypes.looseBool,
|
|
},
|
|
render() {
|
|
const { prefixCls, visible, hiddenClassName } = this.$props;
|
|
|
|
return (
|
|
<div class={!visible ? hiddenClassName : ''}>
|
|
<LazyRenderBox class={`${prefixCls}-content`} visible={visible}>
|
|
{this.$slots.default?.()}
|
|
</LazyRenderBox>
|
|
</div>
|
|
);
|
|
},
|
|
};
|