We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b5b94 commit acae29bCopy full SHA for acae29b
src/guide/conditional.md
@@ -68,7 +68,9 @@ You can use the `v-else` directive to indicate an "else block" for `v-if` or `v-
68
The `v-else` element must immediately follow the `v-if` or `v-show` element - otherwise it will not be recognized.
69
70
71
-**Caveat**: when used with components and `v-show`, `v-else` doesn't get applied properly due to directives priorities. So instead of doing this:
+### Component with `v-else` caveat
72
+
73
+When used with components and `v-show`, `v-else` doesn't get applied properly due to directives priorities. So instead of doing this:
74
75
```html
76
<custom-component v-show="condition"></custom-component>
0 commit comments