# Page

该组件为了弥补 uniapp 无法全局组件的遗憾。文件位于 cl-uni/test/page.vue , 可复制出自行修改。

TIP

在最外层加该组件。然后你可以使用内置的一些方法,也可以自己扩展,例如添加 socket 消息弹窗的事件,登录验证等等

已有方法

  • showLoading
  • hideLoading
  • showToast
  • showConfirm
  • ...

基本用法

<template>
	<page>
		<view class="demo-page">
			Hello COOL-UNI !
		</view>
	</page>
</template>

<script>
	export default {
		mounted() {
			// 提示
			this.$app.showToast("Hello COOL-UNI!");
			// 页面加载
			this.$app.showLoading();
		}
	};
</script>