MobileFooter.vue 764 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div class="mobile-footer">
  3. <nuxt-link to="/provider"><i class="fa fa-camera-retro"></i><p>首页</p></nuxt-link>
  4. <nuxt-link to="/provider"><i class="fa fa-camera-retro"></i><p>店铺</p></nuxt-link>
  5. <nuxt-link to="/provider"><i class="fa fa-camera-retro"></i><p>我</p></nuxt-link>
  6. </div>
  7. </template>
  8. <script>
  9. </script>
  10. <style scoped>
  11. .mobile-footer{
  12. position:fixed;
  13. bottom:0;
  14. width:100%;
  15. height:49px;
  16. display:flex;
  17. text-align: center;
  18. justify-content:space-between;
  19. /*align-items:center;*/
  20. border-top:1px solid #ccc;
  21. background: #ffffff;
  22. }
  23. .mobile-footer a{
  24. flex:1;
  25. font-size:16px;
  26. color:#b0b0b0;
  27. padding-top:5px;
  28. }
  29. .mobile-footer a:hover{
  30. color:#3976f4;
  31. }
  32. </style>