2018-08-22 10:32:27 +08:00

22 lines
273 B
JavaScript

Component({
options: {
addGlobalClass: true
},
properties: {
show: Boolean,
mask: Boolean,
customStyle: String,
zIndex: {
type: Number,
value: 1
}
},
methods: {
onClick() {
this.triggerEvent('click');
}
}
});