BrainBlast/src/App.vue

18 lines
365 B
Vue
Raw Normal View History

2024-02-17 17:33:32 +01:00
<template>
2024-02-20 18:41:24 +01:00
<v-app>
2024-02-23 17:34:31 +01:00
<BrainBlastBar />
<GameStatus />
2024-02-20 18:41:24 +01:00
<v-main>
<RouterView />
</v-main>
2024-02-20 21:51:36 +01:00
<v-footer :elevation=12 border><v-row justify="center">ASCO - Fablab</v-row></v-footer>
2024-02-20 18:41:24 +01:00
</v-app>
2024-02-17 17:33:32 +01:00
</template>
2024-02-24 18:05:24 +01:00
<script setup>
import BrainBlastBar from '@/components/BrainBlastBar.vue'
import GameStatus from '@/components/GameStatus.vue'
</script>