leaf-document-web/src/components/Loading.vue
2023-12-06 23:06:24 +08:00

23 lines
388 B
Vue

<template>
<div
class="d-flex text-center"
style="
width: 100%;
height: 100%;
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>