App.vue 460 B

12345678910111213141516171819202122232425262728
  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. background: #F8F8F8;
  17. }
  18. /*每个页面公共css */
  19. ::-webkit-scrollbar {
  20. display: none;
  21. width: 0 !important;
  22. height: 0 !important;
  23. -webkit-appearance: none;
  24. background: transparent;
  25. }
  26. </style>