App.vue 446 B

1234567891011121314151617181920212223
  1. <script>
  2. export default {
  3. globalData: {
  4. // shareUrl: 'https://mini.98mp.com/api/api.php', //开发环境全局接口域名
  5. glbalHeight:'',
  6. globalTimestamp: (Date.now()).toString(),
  7. },
  8. onLaunch: function() {
  9. console.log('App Launch')
  10. },
  11. onShow: function() {
  12. console.log('App Show')
  13. },
  14. onHide: function() {
  15. console.log('App Hide')
  16. }
  17. }
  18. </script>
  19. <style>
  20. /*每个页面公共css */
  21. </style>