uniapp-h5/src/App.vue

31 lines
456 B
Vue
Raw Normal View History

2024-06-25 10:27:51 +08:00
<script>
export default {
onLaunch: function () {
2024-08-02 13:45:11 +08:00
// console.log('App Launch')
2024-06-25 10:27:51 +08:00
},
onShow: function () {
2024-08-02 13:45:11 +08:00
// console.log('App Show')
2024-06-25 10:27:51 +08:00
},
onHide: function () {
2024-08-02 13:45:11 +08:00
// console.log('App Hide')
2024-06-25 10:27:51 +08:00
},
}
</script>
<style lang="scss">
/*每个页面公共css */
uni-page{
width:100vw;
height:100vh;
}
uni-page-body{
height: 100%;
}
2024-07-08 15:13:35 +08:00
uni-page-head{
display: none !important;
}
2024-07-05 16:51:59 +08:00
body{
font-family: PingFang SC , Source Han Sans;
2024-07-05 16:51:59 +08:00
}
2024-06-25 10:27:51 +08:00
</style>