18 lines
261 B
Vue
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>
|