Files
2023-11-20 15:54:00 +08:00

28 lines
522 B
Vue

<template>
<view
class="Loads acea-row row-center-wrapper"
v-if="loading || !loadend"
style="margin-top: 20rpx;"
>
<template v-if="loading">
<view
class="iconfont icon-jiazai loading acea-row row-center-wrapper"
></view>
正在加载中
</template>
<!-- <template v-else>-->
<!-- 上拉加载更多-->
<!-- </template>-->
</view>
</template>
<script>
export default {
name: "Loading",
props: {
loadend: Boolean,
loading: Boolean
}
};
</script>