HomeLease/App.vue

19 lines
293 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-13 11:43:35 +08:00
@import './static/css/tabbar.css';
2025-08-12 15:38:25 +08:00
</style>