-
Test na prawo jazdy
-
- Witaj w teście na prawo jazdy, aby rozpocząć, naciśnij jeden z poniższych
- przycisków:
-
-
-
-
+
+
+
Test na prawo jazdy
+
+ Witaj w teście na prawo jazdy, aby rozpocząć, naciśnij jeden z
+ poniższych przycisków:
+
+
+
+
+
+
diff --git a/store/examStore.ts b/store/examStore.ts
index 176ba62..975ef52 100644
--- a/store/examStore.ts
+++ b/store/examStore.ts
@@ -18,12 +18,26 @@ export const useExamStore = defineStore("exam-store", () => {
advanced: [],
};
}
-
+ function setEnd(value: boolean) {
+ end.value = value;
+ return end.value;
+ }
+ function setCategory(value: string) {
+ category.value = value;
+ return category.value;
+ }
+ function setResult(value: ResultEndType) {
+ result.value = value;
+ return result.value;
+ }
return {
category,
end,
result,
resetExam,
mildReset,
+ setEnd,
+ setCategory,
+ setResult,
};
});