Skip to content

Instantly share code, notes, and snippets.

@lovemycodesnippets
Created February 7, 2025 17:27
Show Gist options
  • Save lovemycodesnippets/87672138a2e21792593ad337cf98d77e to your computer and use it in GitHub Desktop.
Save lovemycodesnippets/87672138a2e21792593ad337cf98d77e to your computer and use it in GitHub Desktop.
From the article "Building a Quiz App with Nuxt and Xata"
<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