一、问题
场景:父组件内部接口调用完成后,再加载子组件
二、解决方法
1.v-if
子组件加上v-if="showSon"
父组件内部接口调用完成后,再加载子组件:父组件定义变量showSon,接口调用前为false,接口调用完成后改为true
3)父组件加载完成后再加载子组件:父组件定义变量showSon为false,再mounted或onMounted中改为true
参考:https://blog.csdn.net/qq_45327886/article/details/127271525