15 lines
244 B
Vue
15 lines
244 B
Vue
<template>
|
|
<div class="lite-loading">
|
|
<span class="loading loading-spinner"></span>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.lite-loading {
|
|
display: flex;
|
|
flex: 1;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
</style>
|