# Conditional Rendering ## `v-if` The directive `v-if` is used to conditionally render a block. The block will only be rendered if the directive's expression returns a truthy value. ```html

Vue is awesome!

``` It is also possible to add an "else block" with `v-else`: ```html

Vue is awesome!

Oh no 😢

``` ### Conditional Groups with `v-if` on `