feat: add content to v-show on vue roadmap (#6311)

pull/6325/head
Jake Espinosa 3 months ago committed by GitHub
parent fd7917cff8
commit d2ef68bb50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 10
      src/data/roadmaps/vue/content/v-show@_TlbGTKFCMO0wdLbC6xHX.md

@ -1 +1,9 @@
# v-show
# v-show
`v-show` is similar to `v-if` in that it allows you to conditionally render components. However, it does not remove the component from the DOM and merely toggles its `display` CSS property to be `hidden`. It also does not work with `v-else-if` oe `v-else`.
Prefer `v-show` over `v-if` if the component's visibility needs to change often, and `v-if` if not.
Visit the following resources to learn more:
- [@official@Vue Conditional Rendering Docs](https://vuejs.org/guide/essentials/conditional.html#v-show)

Loading…
Cancel
Save