<template>
	<view>

	</view>
</template>

<script>
	export default {
		data() {
			return {
				name:"loading"
			}
		},
		onReady() {
			uni.showLoading({
				title: '加载中...'
			});

			setTimeout(() => {
				uni.hideLoading()
			}, 3000);

		},
		methods: {

		}
	}
</script>

<style>

</style>