hide the move timer when the game ends

This commit is contained in:
Branden J Brown 2024-02-04 09:55:53 -06:00
parent fb6f99e7b0
commit cc33c78305
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<v-container> <v-container>
<v-row class="d-flex justify-center"> <v-row class="d-flex justify-center">
<v-sheet :elevation="2" width="800"> <v-sheet :elevation="2" width="800">
<v-progress-linear :model-value="timeLeft" :max="initTimeLeft" :color="moveColor"></v-progress-linear> <v-progress-linear v-if="!gameOver" :model-value="timeLeft" :max="initTimeLeft" :color="moveColor"></v-progress-linear>
<v-row class="d-flex justify-center"> <v-row class="d-flex justify-center">
<v-col cols="auto"> <v-col cols="auto">
<GameStatus :game="props.game" /> <GameStatus :game="props.game" />