HomeLease/App.vue
2025-08-13 11:43:35 +08:00

19 lines
293 B
Vue

<script>
export default {
onLaunch: function () {
console.log('App Launch')
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
},
}
</script>
<style>
/*每个页面公共css */
@import './static/css/tabbar.css';
</style>