We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my route.js I implemented children url as you can see:
{ path: '/onstep', name: 'OnStep', component: OnstepMain, children: [ { path: 'cosa-e-onstep', name: 'Cosa è OnStep', component: CosaOnStep }, { path: 'configurazioni-possibili-di-onstep', name: 'Configurazioni Possibili', component: ConfOnStep }, { path: 'moduli-necessari-per-la-scheda', name: 'Moduli Necessari', component: ModuliNecessari }, { path: 'scelta-del-driver-per-motori-passo-passo', name: 'Scelta Del Driver Per Motori Passo Passo', component: SceltaDriver }, { path: 'funzionamento-scelta-motori-passo-passo', name: 'Scelta e Funzinamento dei Motori Passo Passo', component: SceltaStepper }, { path: 'calcolo-step-grado-montatura-eq-o-azm', name: 'Calcolo degli step/grado di una montatura EQ o AZM', component: CalcoloStep }, { path: 'montare-la-scheda', name: 'Montare la Scheda', component: MontaScheda }, { path: 'prepariamoci-a-scaricare-il-firmware', name: 'Preprariamo il PC', component: PreparaPC }, { path: 'download-configurazione-firmware-onstep', name: 'Impostare il firmware di OnStep', component: FwOnstep }, { path: 'configurazione-firmware-wifi', name: 'Impostare il firmware del WiFi', component: FwWiFi }, { path: 'download-firmware-onstep', name: 'Download Firmware OnStep', component: DwOnstep }, ] },
But the pages are not reachable, olso printing il console all the route aviable, I have only parten page, why?
The text was updated successfully, but these errors were encountered:
@forna91 Would you provide a reproduction please?
Sorry, something went wrong.
@forna91
I was with the same problem, reading the router vue doc was not working, but I kept trying something different and it worked.
see my example code:
No branches or pull requests
In my route.js I implemented children url as you can see:
{ path: '/onstep', name: 'OnStep', component: OnstepMain, children: [ { path: 'cosa-e-onstep', name: 'Cosa è OnStep', component: CosaOnStep }, { path: 'configurazioni-possibili-di-onstep', name: 'Configurazioni Possibili', component: ConfOnStep }, { path: 'moduli-necessari-per-la-scheda', name: 'Moduli Necessari', component: ModuliNecessari }, { path: 'scelta-del-driver-per-motori-passo-passo', name: 'Scelta Del Driver Per Motori Passo Passo', component: SceltaDriver }, { path: 'funzionamento-scelta-motori-passo-passo', name: 'Scelta e Funzinamento dei Motori Passo Passo', component: SceltaStepper }, { path: 'calcolo-step-grado-montatura-eq-o-azm', name: 'Calcolo degli step/grado di una montatura EQ o AZM', component: CalcoloStep }, { path: 'montare-la-scheda', name: 'Montare la Scheda', component: MontaScheda }, { path: 'prepariamoci-a-scaricare-il-firmware', name: 'Preprariamo il PC', component: PreparaPC }, { path: 'download-configurazione-firmware-onstep', name: 'Impostare il firmware di OnStep', component: FwOnstep }, { path: 'configurazione-firmware-wifi', name: 'Impostare il firmware del WiFi', component: FwWiFi }, { path: 'download-firmware-onstep', name: 'Download Firmware OnStep', component: DwOnstep }, ] },
But the pages are not reachable, olso printing il console all the route aviable, I have only parten page, why?
The text was updated successfully, but these errors were encountered: