RuoYi-Vue-Plus/mini-app/weapp/vant/overlay/index.js
2021-01-12 18:04:14 +08:00

25 lines
421 B
JavaScript

"use strict";
var _component = require('./../common/component.js');
(0, _component.VantComponent)({
props: {
show: Boolean,
customStyle: String,
duration: {
type: null,
value: 300
},
zIndex: {
type: Number,
value: 1
}
},
methods: {
onClick: function onClick() {
this.$emit('click');
},
// for prevent touchmove
noop: function noop() {}
}
});