23 lines
388 B
Vue
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>
|