[Vuejs]-Vue – Running a function after another has completed

-2👍

You can use callback function for Func1 or can use an alternative method to call function with Promise as :

Func1(Func2)
Or
Promise.resolve(Func1()).then(Func2)

Leave a comment