[Vuejs]-Vue.js prevent v-link

0👍

To call a method on click you do it like this:

<i @click="test">&#xE87E;</i>

to call a link registered in vue-router you do it like

<router-link :to="{ path: 'home' }"><i @click="test">&#xE87E;</i></router-link>

Leave a comment