v-for — loop. v-if — condition.
1<li v-for="item in items" :key="item.id">{{ item.name }}</li>2<div v-if="isVisible">Content</div>