App.vue 507 B

12345678910111213141516171819202122232425262728293031
  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 "uview-ui/index.scss";
  17. .content{
  18. background-color: #F8F8F8;
  19. min-height: 100vh;
  20. }
  21. .row{
  22. width: 100%;
  23. display: flex;
  24. flex-direction: row;
  25. align-items: center;
  26. justify-content: space-between;
  27. }
  28. </style>