App.vue 497 B

123456789101112131415161718192021222324252627282930313233343536
  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. }
  6. },
  7. onLaunch() {
  8. console.log('App Launch')
  9. },
  10. onShow() {
  11. console.log('App Show')
  12. },
  13. onHide() {
  14. console.log('App Hide')
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. @import 'uview-ui/index.scss';
  20. @import "common/common.scss";
  21. html, body {
  22. height: 100vh;
  23. overflow-x: hidden;
  24. &::-webkit-scrollbar {
  25. display: none;
  26. }
  27. }
  28. page {
  29. --theme-color: #03C8BE;
  30. --theme-color-gradient: linear-gradient(131deg, #00DAAB 0%, #07CDC4 100%);;
  31. }
  32. </style>