From 81a866085a6ad8e2248e831942ea7d58f7a40797 Mon Sep 17 00:00:00 2001 From: Claudiu Date: Tue, 1 Apr 2025 17:46:28 +0300 Subject: [PATCH 01/23] docs conditional-rendering.md Related to #2642 --- .../guide/essentials/conditional-rendering.md | 56 +++++++++---------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/docs/guide/essentials/conditional-rendering.md b/docs/guide/essentials/conditional-rendering.md index 5e63a2131..53ba08c54 100644 --- a/docs/guide/essentials/conditional-rendering.md +++ b/docs/guide/essentials/conditional-rendering.md @@ -9,19 +9,19 @@ This article is also available as a [short video](https://www.youtube.com/watch? One of the most basic features of Vue is the ability to dynamically insert and remove elements with `v-if`. Let's look at how to test a component that uses `v-if`. ```js -const Nav = { - template: ` - - `, - data() { - return { - admin: false - } - } -} + + + + ``` In the `