HomeLease/App.vue

18 lines
258 B
Vue
Raw Normal View History

2025-08-12 15:38:25 +08:00
<script>
2025-08-13 11:10:19 +08:00
export default {
onLaunch: function () {
console.log('App Launch')
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
},
}
2025-08-12 15:38:25 +08:00
</script>
<style>
2025-08-13 11:10:19 +08:00
/*每个页面公共css */
2025-08-12 15:38:25 +08:00
</style>