Как я могу перейти к дочернему состоянию, используя $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