Vue <浏览器后退点击导航栏样式不照应问题>

首先你需要封装一个公共的组件,我这里是 FooterMenu.vue


image.png

//FooterMenu.vue 的代码 ,通过 path来判断


image.png
<template>
  <div class="footer-box" v-show="isshow">
    <div
      class="f-item"
      v-for="(n,index) in Nav"
      :key="index"
      :class="{active:TabNav === n.router}"
      @click="skip(index)"
    >
      <div>
        <i
          class="iconfont"
          :class=" TabNav == n.router ? n.activeIcon : n.noIcon"
        ></i>
      </div>
      <span>{{n.text}}</span>
    </div>
  </div>
</template>

<script>
export default {
  name: "footer-menu",
  data() {
    return {
      // active: "index",
      isshow:true,
      TabNav: this.$route.path,
      Nav: [
        { text: "首页", router: "/",activeIcon:'icon-shouyexuanzhong-',noIcon:'iconfont icon-shouye' },
        { text: "资产", router: "/property",activeIcon:'icon-zichanxuanzhong-',noIcon:'iconfont icon-zichan1'  },
        { text: "我的", router: "/userCenter",activeIcon:'icon-wodexuanzhong-',noIcon:'iconfont icon-wode'  }
      ]
    };
  },
  methods: {
     skip(index) {
        console.log(this.$route.path)
          this.$router.push({
            path:this.Nav[index].router
          });
          this.TabNav = this.Nav[index].router;
      }
  },
  created(){
    console.log(this.$route.path)
  }
};
</script>
<style lang="scss">
//....
</style>
//在用到的页面内这样写(如果直接在App.vue 里面引用会不生效)
 <footermenu></footermenu>

import footermenu from '@/components/common/FooterMenu'

  components: {
    footermenu
  },
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容