router-view的问题

router-view的问题

嵌套路由的作用就是让新的页面内容展示在子组件的占位符中

// @/router/index.js
// 使用嵌套路由
// father component下配置children
{
    path: '/father',
    name: 'father',
    component: ()=>import(/* webpackChunkName:"father-son" */ '../components/father.vue'),
    children: [
      {
      //父路由下的路径,完整路径为../father/son1
        path:'son1', 
        name:'son1',
        component:()=>import(/* webpackChunkName:"father-son" */ '../components/son.vue')
      },
      {
        path:'son2',
        name:'son2',
        component:()=>import(/* webpackChunkName:"father-son" */ '../components/son.vue')
      }
    ]
  }

父组件中使用一个<router-view/>路由占位符

<!--father.vue-->
<!--father component-->
<template>
  <div id="father">
    <h3>{{fatherH3}}</h3>
    
    <!--son component-->
    <son></son>
    
    <!--使用一个router-view会渲染两个son router中的一个-->
    <router-link to="/father/son1">son1</router-link>
    <router-link to="/father/son2">son2</router-link>
    <router-view/>
  </div>
</template>

效果:只会渲染一个son component
使用一个路由占位符

父组件中使用两个<router-view/>

<!--father.vue-->
<template>
  <div id="father">
    <h3>{{fatherH3}}</h3>
    <son></son>
    <router-link to="/father/son1">son1</router-link>
    <router-view/>
    <router-link to="/father/son2">son2</router-link>
    <router-view/>
  </div>
</template>

效果:渲染出两个son component
使用两个路由占位符

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值