Vue, is there a way to pass data between routes without URL params?
make props: true for the destination route — in the index.js file of router { path: ‘/home’, name: ‘home’, component: taskChooser, props: true, } define prop in the component e.g props: [‘myprop’], – note the quotes copy the variable you want to pass from the source route into the same name as your prop – … Read more