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
17 lines
619 B
Vue
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>
|