Skip to content

Latest commit

 

History

History
78 lines (54 loc) · 2.32 KB

conditional.md

File metadata and controls

78 lines (54 loc) · 2.32 KB
title type order
Conditional Rendering
guide
7

v-if

In string templates, for example Handlebars, we would write a conditional block like this:

<!-- Handlebars template -->
{{#if ok}}
  <h1>Yes</h1>
{{/if}}

In Vue, we use the v-if directive to achieve the same:

<h1 v-if="ok">Yes</h1>

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

<h1 v-if="ok">Yes</h1>
<h1 v-else>No</h1>

Template v-if

Because v-if is a directive, it has to be attached to a single element. But what if we want to toggle more than one element? In this case we can use v-if on a <template> element, which serves as an invisible wrapper. The final rendered result will not include the <template> element.

<template v-if="ok">
  <h1>Title</h1>
  <p>Paragraph 1</p>
  <p>Paragraph 2</p>
</template>

v-else

You can use the v-else directive to indicate an "else block" for v-if:

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

The v-else element must immediately follow the v-if element - otherwise it will not be recognized.

v-show

Another option for conditionally displaying an element is the v-show directive. The usage is largely the same:

<h1 v-show="ok">Hello!</h1>

The difference is that an element with v-show will always be rendered and remain in the DOM; v-show simply toggles the display CSS property of the element.

Note that `v-show` doesn't support the `` syntax, nor does it work with `v-else`.

v-if vs. v-show

v-if is "real" conditional rendering because it ensures that event listeners and child components inside the conditional block are properly destroyed and re-created during toggles.

v-if is also lazy: if the condition is false on initial render, it will not do anything - the conditional block won't be rendered until the condition becomes true for the first time.

In comparison, v-show is much simpler - the element is always rendered regardless of initial condition, with just simple CSS-based toggling.

Generally speaking, v-if has higher toggle costs while v-show has higher initial render costs. So prefer v-show if you need to toggle something very often, and prefer v-if if the condition is unlikely to change at runtime.