左侧导航栏固定,点击进行路由跳转右侧部分显示不同内容

路由跳转的方法:this.$router.push(' 定义的路由名 ');

在router中定义路由名称时可以用children定义子级路由;

<router-view />表示路由占位,在路由占位的时候可以把路由写活。

效果如下:

头部和左侧的导航栏不动,点击左侧导航栏中的按钮右侧的内容发生变化。

代码如下:

src / router / index.js

const routes = [
  {
    path: '/',
    name: 'layout',
    component: LayoutView,
    children: [{
      path: 'home',
      name: 'Home',
      component: () => import('../views/HomeView.vue')
    },
    {
      path: 'about',
      name: 'About',
      component: () => import('../views/AboutView.vue')
    },
  ]
  },
]

 

src / layout / LayoutView.vue

<template>
  <div class="layout">
    <div class="layout-box">
      <el-container>
        <el-header>左侧菜单路由跳转</el-header>
        <el-container>
          <el-aside width="200px">
            <el-button @click="togo('home')">to home</el-button>
            <el-button @click="togo('about')">to about</el-button>
          </el-aside>
          <el-main>
              <router-view></router-view>
          </el-main>
        </el-container>
      </el-container>
    </div>
  </div>
</template>

<script>
export default {
  name: "LayoutView",
  methods: {
    togo: function (value) {
      this.$router.push(value);
    },
  },
};
</script>

<style>
*{
    margin: 0;
    padding: 0;
}
.el-header {
  background-color: #b3c0d1;
  color: #333;
  text-align: center;
  line-height: 60px;
}

.el-aside {
  background-color: #d3dce6;
  color: #333;
  text-align: center;
  line-height: 200px;
}

.el-main {
  background-color: #e9eef3;
  color: #333;
  text-align: center;
  line-height: 160px;
}
.layout-box .el-container{
    height: 100% !important;
    background-color: red;
}

</style>

src / views / AboutView.vue

<template>
  <div class="about">
    <h1>about what?</h1>
  </div>
</template>

src / views / HomeView.vue

<template>
  <div class="home">
    <div class="home-box">welcome to home,we are family!</div>
  </div>
</template>

<script>
export default {}
</script>
<style scoped>
  .home-box{
    width: 300px;
    height: 100px;
    background-color: #009b7b;
    color: blue;
  }
</style>

  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值