Hi, if we use ion-nav as a stack for the screens, is there anyway can push the screen programatically instead of using ion-nav-link?
thank you
Hi, if we use ion-nav as a stack for the screens, is there anyway can push the screen programatically instead of using ion-nav-link?
thank you
From Vue Navigation: Use Ionic + Vue Router to Create Multi-Page Apps
<ion-button @click="() => router.push('/detail')">Go to detail</ion-button>
import { useRouter } from 'vue-router';
const router = useRouter();