1
0
mirror of https://gitee.com/vant-contrib/vant-weapp.git synced 2025-04-23 18:00:33 +08:00
2018-09-26 19:22:56 +08:00

24 lines
321 B
TypeScript

import { VantComponent } from '../common/component';
VantComponent({
props: {
show: Boolean,
mask: Boolean,
customStyle: String,
zIndex: {
type: Number,
value: 1
}
},
methods: {
onClick() {
this.$emit('click');
},
// for prevent touchmove
noop() {}
}
});