InteractiveBORobot/InteractiveBO/src/App.vue
2023-08-17 18:34:36 +02:00

18 lines
261 B
Vue

<template>
<v-app class="app-class">
<v-main>
<BaseLayout />
</v-main>
</v-app>
</template>
<script setup>
import BaseLayout from "@/components/BaseLayout.vue";
</script>
<style scoped>
.app-class {
background: rgb(64, 73, 76);
}
</style>