First question
When I'm using Lazy load with nuxt and components: true
For example
<div v-if="condition"> <!-- 1 -->
<LazyComponent v-if="condition"/>
</div>
<div v-if="condition"> <!-- 2 -->
<LazyComponent/>
</div>
<div v-if="condition"> <!-- 3 -->
<Component/>
</div>
The v-if should be on the component in order to lazy load or it will work when parent has the condition, if it will work with the parent the component must start with Lazy
?
Second question
I am using vue-lazy-hydration package in order to decrease my Time to Interactive and Total Blocking Time. When (LazyHydrate when-idle) take action I don't understand when the browser is idle.