diff --git a/src/v2/guide/conditional.md b/src/v2/guide/conditional.md index 18d9459f87..4e1fdfe1fd 100644 --- a/src/v2/guide/conditional.md +++ b/src/v2/guide/conditional.md @@ -196,4 +196,6 @@ Generally speaking, `v-if` has higher toggle costs while `v-show` has higher ini ## `v-if` with `v-for` +
Using `v-if` and `v-for` together is **not recommended**. See the [style guide](/v2/style-guide/#Avoid-v-if-with-v-for-essential) for further information.
+ When used together with `v-if`, `v-for` has a higher priority than `v-if`. See the list rendering guide for details.