App.vue 410 B

1234567891011121314151617181920212223242526
  1. <script>
  2. export default {
  3. onLaunch: function () {
  4. // console.log('App Launch')
  5. },
  6. onShow: function () {
  7. // console.log('App Show')
  8. },
  9. onHide: function () {
  10. // console.log('App Hide')
  11. },
  12. }
  13. </script>
  14. <style lang="scss">
  15. @import 'uview-ui/index.scss';
  16. /*每个页面公共css */
  17. view {
  18. font-size: 32rpx;
  19. font-weight: 400;
  20. }
  21. span {
  22. font-size: 28rpx;
  23. line-height: 36rpx;
  24. }
  25. </style>