Using the directive v-if you can render HTML conditionally.
v-if
Vue has two more directives v-else-if and v-else to handle else conditions.
v-else-if
v-else
Try adding another v-else-if for the condition count === 2 before the final else condition. You can have as many as you need.
count === 2
else