Hi!
I installed the latest Ionic version with Vue and it works properly. But I have some problems with the router. I have no transitions between pages in the browser or a real device (Android in my case).
I have all the las stuff of the framework and I did not change any line.
Does somebody has the same problem?
Min App.vue file:
<template>
<ion-app>
<ion-router-outlet></ion-router-outlet>
</ion-app>
</template>
Some links to the router pages:
<ion-content>
<ion-list>
<ion-item href="/tabs/tab1">Go!</ion-item>
<ion-item router-link="/map">Map</ion-item>
<ion-item>Menu Item</ion-item>
<ion-item>Menu Item</ion-item>
<ion-item>Menu Item</ion-item>
</ion-list>
</ion-content>
- If I use
href
it refresh all the page… not withrouter-link
.
1 post - 1 participant