App.vue 423 B

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