InteractiveBORobot/InteractiveBO/src/App.vue

18 lines
261 B
Vue
Raw Normal View History

2023-08-17 16:34:36 +00:00
<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>