Alisa/web/src/App.vue

17 lines
212 B
Vue
Raw Normal View History

2024-07-05 11:49:29 +02:00
<template>
<v-app>
<v-main>
2024-07-05 12:34:49 +02:00
<StartPage />
2024-07-05 11:49:29 +02:00
</v-main>
</v-app>
</template>
<script setup lang="ts">
2024-07-05 12:34:49 +02:00
import StartPage from './components/StartPage.vue';
2024-07-05 11:49:29 +02:00
//
</script>
2024-07-05 14:37:10 +02:00
<style scoped>
</style>