first commit 😇

This commit is contained in:
2022-03-29 23:30:23 +02:00
commit 0fd5a49574
22 changed files with 5355 additions and 0 deletions

9
src/views/HomeView.vue Normal file
View File

@ -0,0 +1,9 @@
<script setup>
import ScoresList from "@/components/ScoresList.vue";
</script>
<template>
<main>
<ScoresList />
</main>
</template>

7
src/views/ScoreView.vue Normal file
View File

@ -0,0 +1,7 @@
<script setup>
import Score from "@/components/Score.vue";
</script>
<template>
<Score :id="$route.params.id" />
</template>