vant 底部导航组件的实现(tabbar)

简单设计一个底部导航的功能组件

1.路由跳转

2.选项卡的原理

3.路由拦截

<template>
  <van-tabbar v-model="active" class="active_tab">
    <van-tabbar-item
      v-for="(item,index) in tabbars"
      :key="index"
      @click="tab(index,item.name)"
    >
      <span :class="currIndex == index ? active:''">{{item.title}}</span>
      <template slot="icon" slot-scope="props">
        <img :src="props.active ? item.active : item.normal">
      </template>
    </van-tabbar-item>
  </van-tabbar>
</template>

<script>
export default {
  name: "tabbar",
  data() {
    return {
      currIndex: 0,
      active: 0,
      tabbars: [
        {
          name: "home",
          title: "首页",
          normal: require("../common/icon/home.png"),
          active: require("../common/icon/home_ac.png")
        },
        {
          name: "category",
          title: "分类",
          normal: require("../common/icon/category.png"),
          active: require("../common/icon/category_ac.png")
        },
        {
          name: "message",
          title: "消息",
          normal: require("../common/icon/message.png"),
          active: require("../common/icon/message.png")
        },
        {
          name: "cart",
          title: "购物车",
          normal: require("../common/icon/cart.png"),
          active: require("../common/icon/cart_ac.png")
        },
        {
          name: "mine",
          title: "我的",
          normal: require("../common/icon/mine.png"),
          active: require("../common/icon/mine_ac.png")
        }
      ]
    };
  },
  methods: {
    tab(index, val) {
      this.currIndex = index;
      this.$router.push(val);
    }
  }
};
</script>

<style lang="scss" scoped>
.active_tab img {
  width: 26px;
  height: 26px;
}

.van-tabbar-item--active {
  color: #e10f02;
}
</style>
posted @ 2019-03-25 10:39  Jasonpub  阅读(31600)  评论(4编辑  收藏  举报