App.vue 233 B

123456789101112131415161718
  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. }
  11. }
  12. </script>
  13. <style>
  14. * {
  15. box-sizing: border-box;
  16. }
  17. </style>