Otsuka-APP/components/MB/MBLoading.vue

34 lines
603 B
Vue
Raw Normal View History

2026-02-05 17:07:47 +08:00
<template>
<view class="loading">
<uni-load-more
:contentText="{
contentrefresh: 'loading...',
contentnomore: '暂无数据'
2026-02-05 17:07:47 +08:00
}"
: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>