[Vuejs]-How to route user to particular div with Vue + Typescript?

0👍

In javascript you can use router.push for that, with the hash attribute:

router.push({ name: 'distribution', hash: '#contact' });

See docs.

In your template you can use the routerLink component:

<router-link :to="{ name: 'distribution', hash: '#contact' }">Contact</router-link>

Leave a comment