run 2 function on input vue

Solutions on MaxInterview for run 2 function on input vue by the best coders in the world

showing results for - "run 2 function on input vue"
Lucia
01 Oct 2020
1<div v-on:click="firstFunction(); secondFunction();"></div>
2// or
3<div @click="firstFunction(); secondFunction();"></div>
4