LEARNING BY VUEING

Conditionals
9 / 42

Using the directive v-if you can render HTML conditionally.

Vue has two more directives v-else-if and v-else to handle else conditions.


Try adding another v-else-if for the condition count === 2 before the final else condition. You can have as many as you need.