App.vue 441 B

123456789101112131415161718192021222324252627
  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. // 设置整个项目的背景色
  16. page {
  17. color: $uni-main-color;
  18. font-size: 28rpx;
  19. background: $uni-background-color;
  20. .image {
  21. width: 100%;
  22. height: 100%;
  23. }
  24. }
  25. </style>