less than 1 minute read

Conditional rendering with if else

You can use v-if and v-else directives for conditional rendering, as follows:

<div v-if="Math.random() > 0.5">
  Now you see me
</div>
<div v-else>
  Now you don't
</div>

More details here.

Leave a comment