nuxt-prawo-jazdy/pages/anomaly.vue
NetMan 63121da4b7 postgres -> sqlite, pinia/middleware fix?
other smaller: little type fixes, little changes to ui - more readable category chooser
- result screen with correct, incorrect and chosen answers
little changes to readme
2025-12-13 16:07:23 +01:00

17 lines
619 B
Vue

<script setup lang="ts">
const examStore = useExamStore();
const basicStore = useBasicStore();
const advancedStore = useAdvancedStore();
</script>
<template>
<div class="flex flex-col gap-2 items-start m-2">
<h1 class="text-2xl">Nastąpiła anomalia</h1>
<br />
Kategoria: {{ examStore.category != '' ? examStore.category : '""' }} <br />
Koniec: {{ examStore.end }} <br />
Pytania podstawowe: {{ basicStore.basic }} <br />
Pytania specjalistyczne: {{ advancedStore.advanced }} <br />
<NuxtLink to="/" class="btn btn-primary"> Wróć na stronę główną </NuxtLink>
</div>
</template>