You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
529 B

<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,
view {
display: flex;/* uni-app默认使用flex布局。因为flex布局有利于跨更多平台,尤其是采用原生渲染的平台。如不了解flex布局,请参考http://www.w3.org/TR/css3-flexbox/。若不需要flex布局可删除本行*/
}
</style>