<template>
<div>
<DynamicComponentA></DynamicComponentA>
<!-- Display DynamicComponentB only after DynamicComponentA is loaded -->
<DynamicComponentB></DynamicComponentB>
</div>
</template>
<script>
export default {
name: "Example Component"
components: {
DynamicComponentA: () => import("./DynamicComponentA"),
DynamicComponentB: () => import("./DynamicComponentB")
}
};
</script>
I'm trying to asynchronously load two components within a single component, but I need one of them to render only after the other has finished loading. Do you think that's achievable?