Requesting a clear function as my reminder displays a modal and I'd like to hide it when the timer is reset.
clearTimer(loop = false) {
window.clearInterval(this.timer);
window.clearInterval(this.counter);
this.$emit("clear"); // Raise event to indicate timer has been cleared.
if (loop) {
this.start = Date.now();
this.diff = 0;
this.setDisplay();
this.setTimer();
}
}
Requesting a clear function as my reminder displays a modal and I'd like to hide it when the timer is reset.