19 lines
454 B
JavaScript
19 lines
454 B
JavaScript
Component({
|
|
properties: {
|
|
show: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
timerText: {
|
|
type: String,
|
|
value: '00:00:00'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
handleTap() {
|
|
console.log('[pause-mask] handleTap triggered, show:', this.data.show);
|
|
this.triggerEvent('resume');
|
|
}
|
|
}
|
|
});
|