footInfo.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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="/home/index">
  7. <!-- <van-image width="60" height="60" :src="index" /> -->
  8. <p class="text">首页</p>
  9. </van-tabbar-item>
  10. <van-tabbar-item to="/live/index">
  11. <!-- <van-image width="60" height="60" :src="index" /> -->
  12. <p class="text">直播大厅</p>
  13. </van-tabbar-item>
  14. <van-tabbar-item to="/market/index">
  15. <!-- <van-image width="60" height="60" :src="question" /> -->
  16. <p class="text">科技超市</p>
  17. </van-tabbar-item>
  18. <van-tabbar-item to="/user/index">
  19. <!-- <van-image width="60" height="60" :src="user" /> -->
  20. <p class="text">个人中心</p>
  21. </van-tabbar-item>
  22. </van-tabbar>
  23. </el-col>
  24. </el-row>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. name: 'footInfo',
  30. props: {},
  31. components: {},
  32. data: () => ({}),
  33. created() {},
  34. computed: {},
  35. methods: {},
  36. };
  37. </script>
  38. <style lang="less" scoped>
  39. p {
  40. padding: 0;
  41. margin: 0;
  42. }
  43. .footInfo {
  44. height: 50px;
  45. overflow: hidden;
  46. }
  47. </style>