Is `async/await` available in Vue.js `mounted`?
It will work because the mounted hook gets called after the component was already mounted, in other words it won’t wait for the promises to solve before rendering. The only thing is that you will have an “empty” component until the promises solve. If what you need is the component to not be rendered until … Read more