App.vue 349 B

1234567891011121314151617181920
  1. <script>
  2. import { tools } from './framework/tools'
  3. export default {
  4. onLaunch: function() {
  5. console.log('App Launch')
  6. tools.requestLogin(()=>{
  7. })
  8. },
  9. onShow: function() {
  10. console.log('App Show')
  11. },
  12. onHide: function() {
  13. console.log('App Hide')
  14. }
  15. }
  16. </script>
  17. <style>
  18. /*每个页面公共css */
  19. </style>