App.vue 288 B

123456789101112131415161718192021
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. },
  6. onShow: function() {
  7. console.log('App Show')
  8. },
  9. onHide: function() {
  10. console.log('App Hide')
  11. }
  12. }
  13. </script>
  14. <style>
  15. page{
  16. width: 100vw;
  17. height: 100vh;
  18. overflow:hidden;
  19. }
  20. </style>