const routes = [
{
path: "/",
name: "Main",
component: Main,
children: [
{
path: "",
component: Section,
},
{
path: "/Catalog",
name: "Catalog",
component: Catalog,
children: [
{
path: "/Catalog/Bread",
component: Bread,
},
],
},
],
},
];
"/Catalog"
передать значение переменной selected
в компонент Bread по адресу "/Catalog/Bread"
.