[Vuejs]-How to call multiple function with @click scrolling vuetify

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')
      }
}

Leave a comment