17 lines
245 B
Vue
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> |