App.vue 339 B

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