App.vue 498 B

1234567891011121314151617181920212223
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. // const systemInfo = uni.getSystemInfoSync();
  6. // // 应用程序版本号
  7. // // 条件编译,只在H5渲染
  8. // // #ifdef H5
  9. // this.version_number = systemInfo.appVersion;
  10. // console.log(systemInfo.appVersion,'版本号');
  11. },
  12. onShow: function() {
  13. console.log('App Show')
  14. },
  15. onHide: function() {
  16. console.log('App Hide')
  17. }
  18. }
  19. </script>
  20. <style>
  21. /*每个页面公共css */
  22. </style>