Zlpt_Portal_h5/src/App.vue

24 lines
401 B
Vue
Raw Normal View History

2024-12-13 15:30:11 +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 */
page {
width: 100%;
height: 100%;
font-size: 14px;
background-color: $uni-bg-color-grey;
}
</style>