I noticed that if using this line <ion-button href="/<url>">Navigate</ion-button>
will not trigger animation but when using:
import { useRouter } from 'vue-router'
...
setup() {
...
const navToUrl = () => {
router.push({ name: 'nav-url' })
}
return {
navToUrl
}
}
Will trigger the animation,
What would be the probelm about this? or this is an existing issue?
1 post - 1 participant