mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
39 lines
667 B
JavaScript
39 lines
667 B
JavaScript
import { VantComponent } from '../common/component';
|
|
import { transition } from '../mixins/transition';
|
|
|
|
VantComponent({
|
|
mixins: [transition(false)],
|
|
|
|
props: {
|
|
transition: String,
|
|
customStyle: String,
|
|
overlayStyle: String,
|
|
zIndex: {
|
|
type: Number,
|
|
value: 100
|
|
},
|
|
overlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
closeOnClickOverlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
position: {
|
|
type: String,
|
|
value: 'center'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onClickOverlay() {
|
|
this.$emit('click-overlay');
|
|
|
|
if (this.data.closeOnClickOverlay) {
|
|
this.$emit('close');
|
|
}
|
|
}
|
|
}
|
|
});
|