YNEduApp/App.vue

20 lines
336 B
Vue
Raw Normal View History

2024-08-05 09:23:52 +08:00
<script>
export default {
onLaunch: function() {
2024-08-05 11:08:50 +08:00
// app内禁止横屏
plus.screen.lockOrientation('portrait-primary')
2024-08-05 09:23:52 +08:00
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
</style>