v-if — conditional rendering (adds/removes from DOM). v-show — conditional display (toggles CSS display).
v-if:
v-show:
1<div v-if="show">Content v-if</div>2<div v-show="show">Content v-show</div>
Key differences: