Skip to content

Commit 9244cfc

Browse files
committed
note that modes are not available in transition groups, fixes #1619
1 parent 7c12895 commit 9244cfc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/v2/guide/transitions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,8 @@ So far, we've managed transitions for:
955955
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:
956956

957957
- Unlike `<transition>`, it renders an actual element: a `<span>` by default. You can change the element that's rendered with the `tag` attribute.
958-
- Elements inside are **always required** to have a unique `key` attribute
958+
- [Transition modes](#Transition-Modes) are not available, because we are no longer alternating between mutually exclusive elements.
959+
- Elements inside are **always required** to have a unique `key` attribute.
959960

960961
### List Entering/Leaving Transitions
961962

0 commit comments

Comments
 (0)