have a tabs like app, with parallel components
need to pass data from one to another …
so
this.$router.push({
name: 'Select',
params: { id }
});
should be simple…
other component ‘Select’ has
props:{
id: {String}
}
here is route table from index.ts
const routes = [
{
path: '/',
name: 'Startup',
component: Startup,
},
{
path: '/Select',
name: 'Select',
component: Select,
props: true
},
{
path: '/Config',
name: 'Config',
component: Config,
props: true
},
{
path: '/Navigater',
name: 'Navigater',
component: Navigater,
props: true
}
]
not nested
but the property doesn’t arrive…
all the routes work