App.vue 493 B

12345678910111213141516171819202122232425
  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. @import "@/uni_modules/uview-ui/index.scss";
  16. //mescroll 在小程序上和uview组件冲突会导致下拉图标排列异常 处理一下
  17. .downwarp-content{
  18. display: flex;
  19. flex-direction: row;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. </style>