// Extract Conditional


// Before 
<template>
  <div v-if="condition">
    <!-- Lots of code here for the true condition -->
  </div>
  <div v-else>
    <!-- Lots of other code for the false condition -->
  </div>
</template>

// After 
<template>
  <TrueConditionComponent v-if="condition" />
  <FalseConditionComponent v-else />
</template>