App.vue 365 B

12345678910111213141516171819202122
  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 lang="scss">
  15. @import '@/static/style/common.scss';
  16. /*每个页面公共css */
  17. page {
  18. background-color: #F6F7F9;
  19. height: 100%;
  20. }
  21. </style>