[Vuejs]-Can't update data in Vue.js using event.target.href

1👍

There is no need for this in the template.

It should be like that :

<a @click.prevent="showModal($event)" :href="extcontacturl">Contact Us</a>

Leave a comment