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.
22 lines
492 B
22 lines
492 B
4 years ago
|
<template>
|
||
|
<view class="Loads acea-row row-center-wrapper" v-if="loading || !loaded" style="margin-top: 20rpx;">
|
||
|
<template v-if="loading">
|
||
|
<view class="iconfont icon-jiazai loading acea-row row-center-wrapper"></view>
|
||
|
正在加载中
|
||
|
</template>
|
||
|
<template v-if="!loading">
|
||
|
上拉加载更多
|
||
|
</template>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "Loading",
|
||
|
props: {
|
||
|
loaded: Boolean,
|
||
|
loading: Boolean
|
||
|
}
|
||
|
};
|
||
|
</script>
|