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

<style>
	/*每个页面公共css */
	page{
		background: #F7F7F7;
	}
	image{
		width:100%;
		height:100%;
	}
	.flex {
		display: flex;
	}
	
	.flexone {
		display: flex;
		align-items: center;
	}
	
	.flextwo {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.flexthree {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.flexfour {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
</style>