选项卡(精致版)

Posted Frazier@‘ ’

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选项卡(精致版)相关的知识,希望对你有一定的参考价值。

<template>
  <div class="box">
    <!--省市区-->
    <div class="addBody">
      <ul >
        <li v-for="(item,index) in head" :key="index"  v-bind:class="{act:active == index}" @click="active = index">{{item}}</li>
      </ul>
      <div v-for="(item,index) in content" :key="index" v-show="index == active">{{item}}</div>
    </div>
  </div>
</template>

<script>
export default {
  name: "Provinces",
  data() {
    return {
      active:0,
      head:['省','市','区'],
      content:['河北省','石家庄市','长安区'],
    };
  },
};
</script>

<style lang="scss" scoped>

  .addBody {
    width: 430px;
    height: 400px;
    border: 1px solid #cccccc;
    ul {
      height: 28px;
      line-height: 28px;
      display: flex;
      background-color: #F0F0F0;
      border: 1px solid #F0F0F0;
      li {
        width: 33.33%;
        height: 100%;
        text-align: center;
      }
    }
    ul>li.act{
        background-color: white;
    }
  }

</style>

效果图 :

以上是关于选项卡(精致版)的主要内容,如果未能解决你的问题,请参考以下文章

选项卡执行android中下一个片段中存在的代码

从父片段到选项卡片段的接口侦听器不起作用

显示 ActionBar 选项卡的两个片段

Android - 一个选项卡中的多个片段

在具有多行标题的选项卡上设置片段

Android:如何在选项卡内从一个片段导航到另一个片段? [关闭]