繁体   English   中英

如何正确配置 vue 3 路由器子项以使嵌套路由按预期工作?

[英]How to configure vue 3 router children properly to have nested routes working as expected?

我正在使用 vue 3 路由器开发 vue 2 应用程序。 我想要一条像 /user 这样的路由,并且在 /user/profile 和 /user/settings 中。 所以,我将我的 vue router.js 文件配置为

router.js

import Vue from "vue";
import Router from "vue-router";
import User from "../components/User";
import Settings from "../components/Settings";
import Profile from "../components/Profile";

Vue.use(Router);

export default new Router({
  mode: "history",
  routes: [
    {
      path: "/user",
      name: "user",
      component: User,
      children: [
        {
          path: "/settings",
          name: "settings",
          component: Settings
        },
        {
          path: "/profile",
          name: "profile",
          component: Profile
        }
      ]
    }
  ]
});

User.vue

<template>
  <h1>User</h1>
</template>

Settings.vue

<template>
  <h1>Settings</h1>
</template>

Profile.vue

<template>
  <h1>Settings</h1>
</template>

App.vue

<template>
  <div id="app">
    <router-view></router-view>
  </div>
</template>

<script>
export default {
  name: "app",
};
</script>

<style>
#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

每当我访问/user时,都会呈现 User.vue 但当我尝试访问/user/profile/user/settings时,DOM 中没有呈现任何内容。 我遵循了 vue.js 中未呈现的子路由组件激活具有 CRUD 设置但没有运气的多层嵌套路由的路由器链接 我想要的是 User.vue 应该在/user路由上呈现,并且当我们在/user/profile路由时只应该呈现Profile.vue的内容。 我试图在User.vue中包含<router-view />但我在/user/profile中同时获得了User.vueProfile.vue内容。 我附上 codesandbox 链接以实时查看它并获得更好的理解,因为我不确定如何在 SO 中设置它。

链接: https://codesandbox.io/s/nostalgic-sky-3wvhqr?file=/App.vue:0-354

我怎样才能做到这一点?

UserParent.vue

<template>
  <router-view />
</template>

router.js

routes: [
  {
    path: "/user",
    component: UserParent,
    children: [
      {
        path: "/",
        name: "user",
        component: User
      },
      {
        path: "/settings",
        name: "settings",
        component: Settings
      },
      {
        path: "/profile",
        name: "profile",
        component: Profile
      }
    ]
  }
]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM