In website program in Vuejs, I would like display my page (with a transition) but only after that all API call (Axios and VueX) are done and all DOM (including images) is load.
I have already tested the mounted method with the nexttick inside but the render is'nt done fully at the end..
Maybe you have a idea to resolve my problem ? Thanks in advance
EDIT
I look this post : cannot-find-a-way-to-wait-for-vue-js-async-function But it is'nt resolve my problem, I need a way to know when all call API are finish and also all DOM is load (with images). And only after all is charged, I fade in my total page.
I create a CodeSandbox to illustrate this : Sandbox
Actualy you see that the mounted appear before the finish of my simulate async API call..