1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-04-04 07:22:26 +02:00

feat: add v-if documentation for Vue.js (#6415)

* feat: add v-if documentation for Vue.js

* Update src/data/roadmaps/vue/content/v-if@xHj3W9Ig3MVuVlGyXchaP.md

---------

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Gerzon Rangel 2024-08-09 18:22:50 -05:00 committed by GitHub
parent 0dd89305a0
commit 50e3566e7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1 +1,9 @@
# v-if
# v-if
Conditionally render an element or a template fragment based on the truthy-ness of the expression value.
When a `v-if` element is toggled, the element and its contained directives / components are destroyed and re-constructed. If the initial condition is falsy, then the inner content won't be rendered at all.
Visit the following resources to learn more:
- [@official@v-if Documentation](https://vuejs.org/api/built-in-directives.html#v-if)