24 lines
618 B
Vue
24 lines
618 B
Vue
|
import { defineComponent } from 'vue';
|
||
|
import Transition, { getTransitionProps } from '../_util/transition';
|
||
|
|
||
|
export default defineComponent({
|
||
|
name: 'Mask',
|
||
|
props: {
|
||
|
prefixCls: String,
|
||
|
visible: Boolean,
|
||
|
motionName: String,
|
||
|
maskProps: Object,
|
||
|
},
|
||
|
setup(props, {}) {
|
||
|
return () => {
|
||
|
const { prefixCls, visible, maskProps, motionName } = props;
|
||
|
const transitionProps = getTransitionProps(motionName);
|
||
|
return (
|
||
|
<Transition {...transitionProps}>
|
||
|
<div v-show={visible} class={`${prefixCls}-mask`} {...maskProps} />
|
||
|
</Transition>
|
||
|
);
|
||
|
};
|
||
|
},
|
||
|
});
|