Alisa/web/src/App.vue
Mika b24a040d4d web: formatting by prettier
Co-authored-by: Schmackofatz <Schmackofatz@gmail.com>
2024-07-10 19:48:25 +02:00

26 lines
445 B
Vue

<template>
<v-app>
<v-main>
<div v-if="store.token === null">
<loginPage />
</div>
<div v-else>
<MainPage />
</div>
</v-main>
</v-app>
</template>
<script setup lang="ts">
import MainPage from "./components/MainPage.vue";
import loginPage from "./components/loginPage.vue";
import { store } from "./store";
</script>
<style scoped>
html,
body,
main {
background-color: #e3e3e3;
}
</style>