0👍
✅
You can have a handler method which can call as multiple methods as you want:
<tr @click="handlerMethod">
methods: {
handlerMethod() {
this.$vuetify.goTo('#detail');
this.testClick()
},
testClick () {
console.log('clicked')
}
}
Source:stackexchange.com