App.vue 594 B

1234567891011121314151617181920212223242526
  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. body, html, #app {
  20. font-family: "Helvetica Neue","Microsoft YaHei", "SimHei","SimSun", "Arial", sans-serif;
  21. margin: 0;
  22. padding: 0;
  23. box-sizing: border-box;
  24. }
  25. </style>