代码之家  ›  专栏  ›  技术社区  ›  Alexander Zeitler

Vue路由器:按名称和参数导航到嵌套状态/路由

  •  0
  • Alexander Zeitler  · 技术社区  · 6 年前

    如何使用导航到子状态 $router.push ?

    我的路线:

    const routes = [
      {
        path: "/customers", name: 'Customers',
        components: {content: CustomersMain},
        props: {header: true, content: false},
        children: [
          {
            path: '',
            component: CustomerDetailsEmpty
          },
          {
            path: ':id',
            name: 'CustomerDetails',
            component: CustomerDetails
          }
        ]
      }
    ];
    

    我如何导航到 CustomerDetails 有一个 id 参数集使用 $router.push(路由器.push) ?

    1 回复  |  直到 6 年前
        1
  •  2
  •   Alexander Zeitler    6 年前

    这就成功了:

    this.$router.push({ name: `CustomerDetails`, params: {id} });