v-if — DOM removal. v-show — CSS toggle.
1<div v-if="isVisible">Content</div>2<div v-show="isVisible">Content</div>