Conditionally Render Images in Vue.js using the v-if Directive

Daniel Phiri
InstructorDaniel Phiri
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

In this lesson, you will learn how to conditionally render images in Vue.js using the v-if directive. We will look at defining data properties that will control whether an image is rendered or not and how to use the v-if directive

Daniel Phiri: [0:01] We have two images, one of the egghead.io logo and one of the Vue.js logo. We want to conditionally render the Vue.js logo.

[0:12] We use the v-if directive and define a variable called visible. Save your work, and the Vue.js logo disappears. That's because the v-if directive only renders an element if the variable returns a value of true. Currently, visible is undefined.

[0:35] To fix this, we create a data() function and return a data property called visible. We'll give this the value of true, save your work, and the Vue.js logo reappears. We can change the value to false, save your work, and the Vue.js logo disappears.

[1:02] That is how you conditionally render an element with the v-if directive and a variable, whose value we can change from true to false to render the image.

egghead
egghead
~ 13 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today