Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 290 Bytes

conditional-rendering-with-if-else.md

File metadata and controls

14 lines (11 loc) · 290 Bytes

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.