1👍
✅
Quasar uses Vue Router underneath for page routing.
Here’s an example of how to use Vue Routers Programmatic Navigation to do what you’re trying to accomplish.
<div @click="$router.push('petInformation/')">Click Me</div>
This causes a router push on the div’s click.
Source:stackexchange.com