6
0
Fork 0
YouchuYoukuh5/src/App.vue

25 lines
346 B
Vue

<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">
/*每个页面公共css */
uni-page{
width:100vw;
height:100vh;
}
uni-page-body{
height: 100%;
}
</style>