智能照明系统APP-本地串口
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.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/42/42997fe751346f54f99c20b3e16...

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>