34 lines
603 B
Vue
34 lines
603 B
Vue
<template>
|
|
<view class="loading">
|
|
<uni-load-more
|
|
:contentText="{
|
|
contentrefresh: 'loading...',
|
|
contentnomore: '暂无数据'
|
|
}"
|
|
:status="'loading'"
|
|
/>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {defineOptions} from 'vue'
|
|
|
|
defineOptions({
|
|
name: 'MBLoading'
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.loading {
|
|
display: flex;
|
|
margin: 20px auto;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.label {
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
color: #999;
|
|
}
|
|
}
|
|
</style> |