19 lines
257 B
Vue
19 lines
257 B
Vue
<template>
|
|
<div class="loading-indicator">
|
|
Loading...
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="css">
|
|
.loading-indicator {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
font-weight: bold;
|
|
font-size: 2rem;
|
|
|
|
transform: translate(-50%, -50%)
|
|
}
|
|
</style>
|