vue 之封装一个简单的tabs组件

在这里插入图片描述

vue 之封装一个简单的tabs组件

<!-- Tabs标签页 -->
<template>
  <div class="tabs_wrapt">
    <div
      v-for="(item,index) in titles"
      :key="item"
      @click="itemClcik(index)"
      :class="active === index ? 'active': '' "
    >
      {{ item }}
      <div class="line" v-if="active === index"></div>
    </div>
  </div>
</template>

<script>
export default {
  name: "",
  components: {},
  data() {
    return {
      active: 0,
      titles: [
        "集团指标",
        "财务费用分析",
        "财务费用率分析",
        "信保额分析",
        "信保费分析"
      ]
    };
  },
  methods: {
    itemClcik(index) {
      this.active = index;
      this.$emit("tabsClick", index);
    }
  }
};
</script>
<style  lang="scss" scoped>
.tabs_wrapt {
  display: flex;
  flex-wrap: nowrap;
  height: 40px;
  line-height: 40px;
  background: #ccc;
  overflow-x: scroll;

  &::-webkit-scrollbar {
    display: none;
  }

  & > div {
    height: 100%;
    background: yellow;
    padding: 0 6px;
    //不让主轴压缩
    flex-shrink: 0;
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #333333;
    text-align: left;
  }
  .active {
    position: relative;
    font-family: PingFangSC-Medium;
    font-size: 17px;
    color: #000000;
    text-align: left;

    .line {
      position: absolute;
      top: 34px;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 2px;
      background: #1e87f0;
      border-radius: 1.5px;
    }
  }
}
</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值