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.