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.
ant-design-vue/components/vc-trigger/PopupInner.jsx

22 lines
559 B

import PropTypes from '../_util/vue-types';
import LazyRenderBox from './LazyRenderBox';
7 years ago
export default {
props: {
hiddenClassName: PropTypes.string.def(''),
prefixCls: PropTypes.string,
7 years ago
visible: PropTypes.bool,
7 years ago
},
render() {
const { prefixCls, visible, hiddenClassName } = this.$props;
7 years ago
7 years ago
return (
<div class={!visible ? hiddenClassName : ''}>
7 years ago
<LazyRenderBox class={`${prefixCls}-content`} visible={visible}>
{this.$slots.default && this.$slots.default()}
7 years ago
</LazyRenderBox>
</div>
);
7 years ago
},
};