hx/App.vue

18 lines
226 B
Vue
Raw Permalink Normal View History

2024-10-18 18:09:15 +08:00
<script>
export default {
onLaunch() {
console.log('App Launch')
},
onShow() {
console.log('App Show')
},
onHide() {
console.log('App Hide')
},
}
</script>
<style>
/* 每个页面公共css */
</style>