From 2fe8527c37bf7bb4f38d161a1d9fd96abf68a6e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20CHOMAZ?= Date: Sun, 1 Feb 2026 16:19:39 +0100 Subject: [PATCH] (update) track the time in the new real timer for the remaining time and new uix placements --- VApp/src/views/GameControl.vue | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/VApp/src/views/GameControl.vue b/VApp/src/views/GameControl.vue index f14ba355..aaaae949 100644 --- a/VApp/src/views/GameControl.vue +++ b/VApp/src/views/GameControl.vue @@ -5,17 +5,17 @@ - + - + + - @@ -26,9 +26,14 @@ import CardSolution from '@/components/CardSolution.vue' import CardControl from '@/components/CardControl.vue' -import CardSoundboard from '@/components/CardSoundboard.vue'; import CardButtonScore from '@/components/CardButtonScore.vue' import BuzzerValidationDialog from '@/components/BuzzerValidationDialog.vue'; +import { onMounted } from 'vue'; +import quizStore from '@/store/quizStore'; + +onMounted(() => { + quizStore.actions.init(); +});