You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
351 B
23 lines
351 B
<template>
|
|
<div class="uni-async-loading">
|
|
<i class="uni-loading" />
|
|
</div>
|
|
</template>
|
|
<style>
|
|
.uni-async-loading {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
padding: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
.uni-async-loading .uni-loading {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
name: 'AsyncLoading'
|
|
}
|
|
</script>
|
|
|