Files

22 lines
513 B
Vue
Raw Normal View History

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