App.vue 425 B

1234567891011121314151617181920212223242526272829303132
  1. <script>
  2. export default {
  3. onLaunch: function () {
  4. },
  5. onShow: function () {
  6. },
  7. onHide: function () {
  8. },
  9. globalData: {
  10. }
  11. }
  12. </script>
  13. <style lang="scss">
  14. /*每个页面公共css */
  15. page {
  16. min-height: 100vh;
  17. width: 750rpx;
  18. background-color: #fff;
  19. padding-bottom: constant(safe-area-inset-bottom);
  20. padding-bottom: env(safe-area-inset-bottom);
  21. }
  22. .content {
  23. display: flex;
  24. flex-direction: column;
  25. }
  26. </style>