App.vue 516 B

123456789101112131415161718192021222324252627282930
  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. /*每个页面公共css */
  16. @import '@/uni_modules/uni-scss/index.scss';
  17. // 设置整个项目的背景色
  18. page {
  19. color: $uni-main-color;
  20. font-size: 28rpx;
  21. background: $uni-background-color;
  22. img {
  23. width: 100%;
  24. height: 100%;
  25. }
  26. }
  27. </style>