-
Notifications
You must be signed in to change notification settings - Fork 4.7k
feat(migration): transition-group (close #648) #649
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b0f0450
feat(migration): transition-group
272ae34
Update src/guide/migration/transition-group.md
sdras 716c2fe
Update src/guide/migration/transition-group.md
sdras 0702542
Update src/guide/migration/transition-group.md
sdras 6e50bdd
Update src/guide/migration/transition-group.md
sdras 2a2b630
Update src/guide/transitions-list.md
sdras 8c59920
Update src/guide/migration/transition-group.md
sdras 47a2a3c
add transition-group to config
sdras File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
title: Transition Group root Element | ||
sdras marked this conversation as resolved.
Show resolved
Hide resolved
sdras marked this conversation as resolved.
Show resolved
Hide resolved
|
||
badges: | ||
- breaking | ||
--- | ||
|
||
# {{ $frontmatter.title }} <MigrationBadges :badges="$frontmatter.badges" /> | ||
|
||
## Overview | ||
|
||
`<transition-group>` no longer renders a root element by default, but can still create one with the `tag` prop. | ||
|
||
## 2.x Syntax | ||
|
||
In Vue 2, `<transition-group>`, like other custom components, needed a root element, which by default was a `<span>` but was customizable via the `tag` prop. | ||
|
||
```html | ||
<transition-group tag="ul"> | ||
<li v-for="item in items" :key="item"> | ||
{{ item }} | ||
</li> | ||
</transition-group> | ||
``` | ||
|
||
## 3.x Syntax | ||
|
||
In Vue 3, we have [fragment support](/guide/migration/fragments.html), so components no longer _need_ a root node. Consequently, `<transition-group>` no longer renders one by default. | ||
|
||
- If you already have the `tag` prop defined in your Vue 2 code, like in the example above, everything will work as before | ||
- If you didn't have one defined _and_ your styling or other behaviors relied on the presence of the `<span>` root element to work properly, simply add `tag="span"` to the `<transition-group>`: | ||
|
||
```html | ||
<transition-group tag="span"> | ||
<!-- --> | ||
</transition-group> | ||
``` | ||
|
||
## See also | ||
|
||
- [Some transition classes got a rename](/guide/migration/transition.html) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.