No meu caso eu adicionei um if para caso o individuo abra o inspecionar o elemento e remova o disabled
if(!this.running){
this.running = true;
this.stopwatch = setInterval(() => {
this.timeElapsed++;
}, 1000);
}, stop() {
if(this.running){
this.running = false;
clearInterval(this.stopwatch);
}
}