vant-weapp/dist/popup/index.js
2018-09-07 10:32:16 +08:00

33 lines
543 B
JavaScript

import { create } from '../common/create';
import { transition } from '../mixins/transition';
create({
mixins: [transition(false)],
props: {
overlayStyle: String,
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');
}
}
}
});