<template> <!-- <a href="href" @click.prevent="handleClick"> --> <a href="href" @click="handleClick"></template><script>export default { props: ['href'], methods: { handleClick(event) { // conditional prevent if (!this.href) { event.preventDefault() } // do something } }}</script>
NOTE: Vue support conditional event, but not modifier.