From 60789f440c19b67ec4646960c9d3695ca01ff722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20CHOMAZ?= Date: Mon, 23 Dec 2024 21:58:07 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20des=20variables=20r=C3=A9actives=20dans?= =?UTF-8?q?=20le=20card=20score?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/components/CardScore.vue | 96 +++++++++++++++++++++++++++------ 1 file changed, 79 insertions(+), 17 deletions(-) diff --git a/ui/src/components/CardScore.vue b/ui/src/components/CardScore.vue index 85c9ea5..8f39899 100644 --- a/ui/src/components/CardScore.vue +++ b/ui/src/components/CardScore.vue @@ -10,14 +10,14 @@
Manche
- {{ RedRoundScore }} + {{ scores.RedRoundScore }}
Total
- {{ RedTotalScore }} + {{ scores.RedTotalScore }}
@@ -30,14 +30,14 @@
Manche
- {{ BlueRoundScore }} + {{ scores.BlueRoundScore }}
Total
- {{ BlueTotalScore }} + {{ scores.BlueTotalScore }}
@@ -53,14 +53,14 @@
Manche
- {{ OrangeRoundScore }} + {{ scores.OrangeRoundScore }}
Total
- {{ OrangeTotalScore }} + {{ scores.OrangeTotalScore }}
@@ -73,14 +73,14 @@
Manche
- {{ GreenRoundScore }} + {{ scores.GreenRoundScore }}
Total
- {{ GreenTotalScore }} + {{ scores.GreenTotalScore }}
@@ -90,18 +90,80 @@