fxy060608 9cd49e725a init
2018-11-18 14:35:44 +08:00

23 lines
541 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>