App.vue 411 B

1234567891011121314151617181920212223
  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>
  15. /*每个页面公共css */
  16. .uni-tabbar-bottom .uni-tabbar{
  17. /* border-radius: 9999px;
  18. box-shadow: 0px -3px 8px 0px rgba(47, 126, 243, 0.2);
  19. bottom: 10px;
  20. margin: 0 10px; */
  21. }
  22. </style>