BrainBlast/src/views/HomeView.vue
2024-02-17 16:33:32 +00:00

10 lines
141 B
Vue

<script setup>
import TheWelcome from '../components/TheWelcome.vue'
</script>
<template>
<main>
<TheWelcome />
</main>
</template>