oa-base/App.vue

17 lines
225 B
Vue
Raw Permalink Normal View History

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