uniapp-h5/src/App.vue

25 lines
346 B
Vue
Raw Normal View History

2024-06-25 10:27:51 +08:00
<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>