App.vue 354 B

12345678910111213141516171819
  1. <script>
  2. export default {
  3. // creat by wgy 0619 生命周期 钩子
  4. onLaunch: function() {
  5. console.log('App Launch')
  6. },
  7. onShow: function() {
  8. console.log('App Show')
  9. },
  10. onHide: function() {
  11. console.log('App Hide')
  12. }
  13. }
  14. </script>
  15. <style lang="scss">
  16. /* 公共样式 */
  17. @import '/common/styles/global/components.scss';
  18. </style>