oa-base/App.vue

17 lines
225 B
Vue
Raw Permalink Normal View History

2024-04-11 06:31:44 +00:00
<script>
export default {
onLaunch: function() {
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
</style>