<!-- there are two cases: --> <!-- do you wanna keep it in the dom? --> <div v-show="someBoolean"> v-show </div> <!-- or remove it --> <div v-if="someBoolean"> v-if </div>