[Vuejs]-Async hooks in Vue component

0👍

Vue doesn’t care what you do in the lifecycle hooks. They do not normally have any return value, as nothing calls them expecting a return value, so if you are expecting to use the promises they return, you will have to arrange that yourself.

Leave a comment