[Vuejs]-How can i go to a routed page in quasar?

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.

👤T0nic

Leave a comment