App.vue 616 字节
<script>
	export default {
		onLaunch: function() {
			// console.log('App Launch')
		},
		onShow: function() {
			// console.log('App Show')
		},
		onHide: function() {
			// console.log('App Hide')
		}
	}
</script>

<style lang="scss">
	/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
	@import "uview-ui/index.scss";
	.flexJ {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}
	.flexC {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}
	.flexA {
	  display: flex;
	  // justify-content: center;
	  align-items: center;
	}
</style>