In my coding setup, there is a parent component that is responsible for rendering a child component. The challenge I am currently facing involves making an asynchronous call (specifically an axios 'get' request from Vuex actions) inside the mounted
hook of the parent component to fetch data required for the child component.
My goal is to delay the rendering of the child component until after this async call has been completed successfully. Does anyone have any suggestions for achieving this in a clean and efficient manner?