mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
35 lines
530 B
Vue
35 lines
530 B
Vue
<template>
|
|
<transition name="van-fade">
|
|
<div
|
|
v-show="visible"
|
|
class="van-modal"
|
|
:class="className"
|
|
:style="style"
|
|
@touchmove.prevent.stop
|
|
@click="$emit('click', $event)"
|
|
/>
|
|
</transition>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'modal',
|
|
|
|
props: {
|
|
zIndex: Number,
|
|
visible: Boolean,
|
|
className: String,
|
|
customStyle: Object
|
|
},
|
|
|
|
computed: {
|
|
style() {
|
|
return {
|
|
zIndex: this.zIndex,
|
|
...this.customStyle
|
|
};
|
|
}
|
|
}
|
|
};
|
|
</script>
|