1.新建两个子视图 Profile.vuePosts.vue
    2.配置子路由

    1. children:[
    2. // 当 /user/:id/profile 匹配成功,
    3. // Profile 会被渲染在 User 的 <router-view> 中
    4. {
    5. path:"profile",
    6. component: () => import('@/views/Profile')
    7. },
    8. // 当 /user/:id/posts 匹配成功,
    9. // Posts 会被渲染在 User 的 <router-view> 中
    10. {
    11. path: "posts",
    12. component: () => import('@/views/Posts')
    13. }
    14. ]

    3.配置主页跳转

    1. <!-- 嵌套理由 -->
    2. <router-link to="/user/1/profile">User/profile</router-link> |
    3. <router-link to="/user/1/posts">User/posts</router-link> |

    4.配置视图输出
    <router-view></router-view>
    image.png