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.
- [Vuejs]-VUE: the whole page disappeared, only showing "Proxy error…"
- [Vuejs]-How I can remove trailing slash?
Source:stackexchange.com