2👍
✅
You can access the element clicked from the current event.
The code would look something like this
<a v-on:click="myFunction($event, 'param')">Click me</a>
// in your component
methods: {
myFunction: function(event, param) {
console.log(event.target);
}
}
Source:stackexchange.com