[Vuejs]-Vue.js Countdown Timer occasionally skips

0👍

You most likely are calling the method multiple times.

Your early bailout condition

if(this.isCountdownActive == true && this.gameState.round === round) return;

You rely on this.gameState.round to be equal to round, if that’s not the case you will register the countdown multiple times.

Leave a comment