first commit 😇
This commit is contained in:
9
src/views/HomeView.vue
Normal file
9
src/views/HomeView.vue
Normal 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
7
src/views/ScoreView.vue
Normal file
@ -0,0 +1,7 @@
|
||||
<script setup>
|
||||
import Score from "@/components/Score.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Score :id="$route.params.id" />
|
||||
</template>
|
Reference in New Issue
Block a user