(update) track the time in the new real timer for the remaining time and new uix placements

This commit is contained in:
2026-02-01 16:19:39 +01:00
parent 5938e269e1
commit 2fe8527c37

View File

@@ -5,17 +5,17 @@
<card-control /> <card-control />
</v-col> </v-col>
<v-col class="pl-3"> <v-col class="pl-3">
<card-soundboard /> <CardButtonScore />
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
<v-row no-gutters class="pr-4 pl-4"> <v-row no-gutters class="pr-4 pl-4">
<v-row no-gutters> <v-row no-gutters>
<v-col class="align-start"> <v-col class="align-start">
<CardButtonScore /> <card-solution />
</v-col> </v-col>
<v-col class="pl-3"> <v-col class="pl-3">
<card-solution />
</v-col> </v-col>
</v-row> </v-row>
</v-row> </v-row>
@@ -26,9 +26,14 @@
import CardSolution from '@/components/CardSolution.vue' import CardSolution from '@/components/CardSolution.vue'
import CardControl from '@/components/CardControl.vue' import CardControl from '@/components/CardControl.vue'
import CardSoundboard from '@/components/CardSoundboard.vue';
import CardButtonScore from '@/components/CardButtonScore.vue' import CardButtonScore from '@/components/CardButtonScore.vue'
import BuzzerValidationDialog from '@/components/BuzzerValidationDialog.vue'; import BuzzerValidationDialog from '@/components/BuzzerValidationDialog.vue';
import { onMounted } from 'vue';
import quizStore from '@/store/quizStore';
onMounted(() => {
quizStore.actions.init();
});
</script> </script>