美文网首页
《vue》实现动态显示与隐藏底部导航方法!

《vue》实现动态显示与隐藏底部导航方法!

作者: MrHu1 | 来源:发表于2019-04-01 19:34 被阅读0次

    在日常项目中,总有几个页面是要用到底部导航的,总有那么些个页面,是不需要底部导航的,这里列举一下页面底部导航的显示与隐藏的两种方式:

    方法一:

    1. 路由配置meta: {footShow: true, }
    routes: [
      {
       path: '/',
       name: 'home',
       redirect: '/home', // 默认路由添加class
       component: home,
       meta: {
        footShow: true, // true显示,false隐藏
       },
      },
    ]
    
    1. 在App.vue页面
    <template>
     <div id="app">
      <router-view/>
      <foot v-if="$route.meta.footShow"></foot>  //底部
     </div>
    </template>
    

    方法二:

    使用watch监听导航切换

    watch: { // 监听路由变化
      $route (to, from) {
       let ThisPage = to.name;
       if (ThisPage === 'home' || ThisPage === 'healthcare' || ThisPage === 'healtharea' || ThisPage === 'personal') {
        this.footShow = true;
       } else {
        this.footShow = false;
       }
      }
     },
    

    相关文章

      网友评论

          本文标题:《vue》实现动态显示与隐藏底部导航方法!

          本文链接:https://www.haomeiwen.com/subject/kqebbqtx.html