Can I execute two different functions in same v-on:change with Vue

Best way to organize this, is to have a function that calls both functions.

Main function thats triggered on event:

methods: {
  eventChange() {
    this.functionOne();
    this.functionTwo();
  }
}
<input .. @change="eventChange()">

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top