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'); } } });