Files
front/components/LoadingScreen.vue
T
2024-06-13 22:39:46 -04:00

17 lines
245 B
Vue

<script setup lang="ts">
</script>
<template>
<div id="loading_screen">Loading...</div>
</template>
<style scoped>
#loading_screen {
left: 0;
position: absolute;
height: 100%;
width: 100%;
background: white;
}
</style>