footInfo.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div id="footInfo">
  3. <el-row>
  4. <el-col :span="24" class="footInfo">
  5. <van-tabbar route>
  6. <van-tabbar-item to="/">
  7. <p class="text">首页</p>
  8. </van-tabbar-item>
  9. <van-tabbar-item to="/live/index">
  10. <p class="text">直播大厅</p>
  11. </van-tabbar-item>
  12. <van-tabbar-item to="/market/index">
  13. <p class="text">科技超市</p>
  14. </van-tabbar-item>
  15. <van-tabbar-item to="/service/index">
  16. <p class="text">创新服务</p>
  17. </van-tabbar-item>
  18. <van-tabbar-item to="/user/index">
  19. <p class="text">个人中心</p>
  20. </van-tabbar-item>
  21. </van-tabbar>
  22. </el-col>
  23. </el-row>
  24. </div>
  25. </template>
  26. <script>
  27. export default {
  28. name: 'footInfo',
  29. props: {},
  30. components: {},
  31. data: () => ({}),
  32. created() {},
  33. computed: {},
  34. methods: {},
  35. };
  36. </script>
  37. <style lang="less" scoped>
  38. p {
  39. padding: 0;
  40. margin: 0;
  41. }
  42. .footInfo {
  43. height: 50px;
  44. overflow: hidden;
  45. }
  46. </style>