Created
February 7, 2025 17:27
-
-
Save lovemycodesnippets/87672138a2e21792593ad337cf98d77e to your computer and use it in GitHub Desktop.
From the article "Building a Quiz App with Nuxt and Xata"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
… | |
</script> | |
<template> | |
<main> | |
<div class="ctr"> | |
<Questions | |
v-if="questionsAnswered < questions.length" | |
:questions="questions" | |
:answers="answers" | |
:questionsAnswered="questionsAnswered" /> | |
… | |
</div> | |
<Footer /> | |
</main> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment