bht-app/src/App.vue

18 lines
258 B
Vue
Raw Normal View History

2025-05-19 11:59: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>
/*每个页面公共css */
</style>