Skip to content

Commit 447a31a

Browse files
fix: avoid redirects by including .html on links (#1163)
1 parent ed56e75 commit 447a31a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/guide/conditional.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ Generally speaking, `v-if` has higher toggle costs while `v-show` has higher ini
9393
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.
9494
:::
9595

96-
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.
96+
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.html#v-for-with-v-if) for details.

src/guide/transitions-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ So far, we've managed transitions for:
88
So what about for when we have a whole list of items we want to render simultaneously, for example with `v-for`? In this case, we'll use the `<transition-group>` component. Before we dive into an example though, there are a few things that are important to know about this component:
99

1010
- By default, it doesn't render a wrapper element, but you can specify an element to be rendered with the `tag` attribute.
11-
- [Transition modes](/guide/transitions-enterleave#transition-modes) are not available, because we are no longer alternating between mutually exclusive elements.
11+
- [Transition modes](/guide/transitions-enterleave.html#transition-modes) are not available, because we are no longer alternating between mutually exclusive elements.
1212
- Elements inside are **always required** to have a unique `key` attribute.
1313
- CSS transition classes will be applied to inner elements and not to the group/container itself.
1414

0 commit comments

Comments
 (0)