mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
37 lines
699 B
JavaScript
37 lines
699 B
JavaScript
import { use } from '../utils';
|
|
|
|
const [sfc, bem] = use('overlay');
|
|
|
|
export default sfc({
|
|
props: {
|
|
zIndex: Number,
|
|
visible: Boolean,
|
|
className: String,
|
|
customStyle: Object
|
|
},
|
|
|
|
render(h) {
|
|
const style = {
|
|
zIndex: this.zIndex,
|
|
...this.customStyle
|
|
};
|
|
|
|
return (
|
|
<transition name="van-fade">
|
|
<div
|
|
v-show={this.visible}
|
|
style={style}
|
|
class={[bem(), this.className]}
|
|
onTouchmove={event => {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}}
|
|
onClick={event => {
|
|
this.$emit('click', event);
|
|
}}
|
|
/>
|
|
</transition>
|
|
);
|
|
}
|
|
});
|