diff --git a/src/api/directives.md b/src/api/directives.md index de4cbc218a..dd370a8d03 100644 --- a/src/api/directives.md +++ b/src/api/directives.md @@ -62,7 +62,7 @@ This directive triggers transitions when its condition changes. - When used together with `v-if`, `v-for` has a higher priority than v-if. See the [list rendering guide](../guide/list.html#v-for-with-v-if) for details. + When used together, `v-if` has a higher priority than `v-for`. We don't recommend using these two directives together on one element — see the [list rendering guide](../guide/list.html#v-for-with-v-if) for details. - **See also:** [Conditional Rendering - v-if](../guide/conditional.html#v-if) diff --git a/src/guide/conditional.md b/src/guide/conditional.md index 46dd36c805..c35f1e2efb 100644 --- a/src/guide/conditional.md +++ b/src/guide/conditional.md @@ -91,4 +91,4 @@ Generally speaking, `v-if` has higher toggle costs while `v-show` has higher ini Using `v-if` and `v-for` together is **not recommended**. See the [style guide](../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](list#v-for-with-v-if) for details. +When `v-if` and `v-for` are both used on the same element, `v-if` will be evaluated first. See the [list rendering guide](list#v-for-with-v-if) for details. diff --git a/src/guide/list.md b/src/guide/list.md index 6ac92074e4..b1dc7b5a03 100644 --- a/src/guide/list.md +++ b/src/guide/list.md @@ -268,25 +268,24 @@ Similar to template `v-if`, you can also use a `