leaf-document-web/src/components/Loading.vue

22 lines
386 B
Vue
Raw Normal View History

2023-12-06 15:00:44 +00:00
<template>
<div
class="d-flex text-center"
style="
width: 100%;
height: 60%;
justify-content: center;
align-items: center;
"
>
<div>
<div>
<v-progress-circular
indeterminate
></v-progress-circular>
</div>
<div class="mt-5">
<p>请稍后...</p>
</div>
</div>
</div>
</template>