case-data/App.vue
2025-04-11 10:49:39 +08:00

29 lines
410 B
Vue

<script setup>
import { onLaunch,onShow,onHide } from '@dcloudio/uni-app'
onLaunch(()=>{
console.log('App Launch')
});
onShow(()=>{
console.log('App Show')
});
onHide(()=>{
console.log('App Hide')
});
</script>
<style>
/*每个页面公共css */
/* #ifdef H5 */
*{
margin: 0;
padding: 0;
}
uni-page-head {
display: none;
}
/* #endif */
wx-button:after{
border: none;
}
</style>