Files
tv-pro/App.vue
2025-06-16 13:40:43 +08:00

26 lines
474 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script>
export default {
onLaunch: function() {
// #ifdef APP-PLUS
plus.screen.lockOrientation('landscape-primary');
plus.navigator.setFullscreen(true);
// #endif
},
onHide: function() {
console.log('App Hide')
},
onUnload() {
// #ifdef APP-PLUS
plus.screen.lockOrientation('landscape-primary');
// #endif
}
}
</script>
<style>
/*每个页面公共css */
.debuggerMode{
//border: 1px solid red;
}
</style>