tabbar3.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="tabs flex-align-around" :class="[customClass]">
  3. <view
  4. v-for="item in tabs"
  5. :key="item.value"
  6. class="cell flex-align-center"
  7. :class="{ active: tab.value === item.value }"
  8. @click="clickTab(item)"
  9. >
  10. {{ item.title }}
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. props: {
  17. tabs: Array,
  18. initial: {
  19. default: 0,
  20. type: Number
  21. },
  22. customClass: {
  23. default: '',
  24. type: String
  25. }
  26. },
  27. data() {
  28. return {
  29. tab: this.tabs[this.initial]
  30. }
  31. },
  32. methods: {
  33. clickTab(item) {
  34. this.tab = item
  35. this.$emit('change', item)
  36. }
  37. }
  38. }
  39. </script>
  40. <style lang="scss" scoped>
  41. .tabs {
  42. height: 56rpx;
  43. .cell {
  44. height: 100%;
  45. width: 128rpx;
  46. position: relative;
  47. font-size: 24rpx;
  48. color: #999999;
  49. background: #f3f3f8;
  50. border-radius: 24rpx 24rpx 0 0;
  51. &.active {
  52. color: #000;
  53. background-color: #fff;
  54. }
  55. }
  56. }
  57. </style>