| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | <template>	<view class="page">		<template v-if="loading">			<u-loading-icon text="正在加载中..." textSize="26"></u-loading-icon>		</template>		<template v-else>			<p>已经到底啦~</p>		</template>	</view></template><script>	export default {		props:{			loading:{				typeof: Boolean,				default: false			}		},		data(){			return {							}		},		methods:{					}	}</script><style scoped lang="less">	.page{		width: 100%;		display: flex;		align-items: center;		justify-content: center;		margin-top: 30rpx;		p{			font-size: 26rpx;			color: lightgray;		}	}</style>
 |