all files / src/tabs/ tabs.vue

100% Statements 13/13
100% Branches 13/13
100% Functions 9/9
100% Lines 13/13
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88                                                                                                                                                     
<template>
  <div class="am-tabs-content" :class="classes">
    <slot></slot>
  </div>
</template>
 
<script>
  import Vue from "vue";
 
  export default {
    name: "amTabs",
    props: {
      selected: {
        type: [String, Number],
        required: true
      },
      direction: {
        type: String,
        default: "horizontal",
        validator(val) {
          return ["horizontal", "vertical"].indexOf(val) > -1;
        }
      },
      lineWidthOrHeight: {
        type: [String, Number]
      }
    },
    data() {
      return {
        eventBus: new Vue()
      };
    },
    provide() {
      return {
        eventBus: this.eventBus,
        direction: this.direction,
        lineWidthOrHeight: this.lineWidthOrHeight
      };
    },
    computed: {
      classes() {
        return this.direction;
      }
    },
    mounted() {
      this.checkChildren();
      this.selectedTabs();
    },
    methods: {
      checkChildren() {
        if (this.$children.length === 0) {
          console &&
          console.warn &&
          console.warn(
            "tabs的子组件应该是tabs-header和tabs-body,但是你没有写子组件"
          );
        }
      },
      selectedTabs() {
        this.$children.forEach(vm => {
          if (vm.$options.name === "amTabsHeader") {
            vm.$children.forEach(childVm => {
              if (
                childVm.$options.name === "amTabsItem" &&
                childVm.name === this.selected
              ) {
                this.eventBus &&
                this.eventBus.$emit("update:selected", this.selected, childVm);
              }
            });
          }
        });
      }
    }
  };
</script>
 
<style lang="scss">
  .am-tabs-content {
    position: relative;
    &.vertical {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
    }
  }
</style>