-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migration > Transition Group の翻訳を追従 (#254)
* feat: add migration guide > transition group root element * docs: translate migration guide > transition group
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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: トランジショングループのルート要素 | ||
badges: | ||
- breaking | ||
--- | ||
|
||
# {{ $frontmatter.title }} <MigrationBadges :badges="$frontmatter.badges" /> | ||
|
||
## 概要 | ||
|
||
`<transition-group>` は、デフォルトではルート要素をレンダリングしなくなりましたが、 `tag` プロパティでルート要素を作成することができます。 | ||
|
||
## 2.x での構文 | ||
|
||
Vue 2 では、 `<transition-group>` は他のカスタムコンポーネントと同様に、ルート要素を必要として、デフォルトでは `<span>` となっており `tag` プロパティを通してカスタマイズできました。 | ||
|
||
```html | ||
<transition-group tag="ul"> | ||
<li v-for="item in items" :key="item"> | ||
{{ item }} | ||
</li> | ||
</transition-group> | ||
``` | ||
|
||
## 3.x での構文 | ||
|
||
Vue 3 では [Fragments](/guide/migration/fragments.html) があるので、コンポーネントにはルート要素が _必要なくなりました_ 。そのため、 `<transition-group>` はデフォルトではルート要素をレンダリングしなくなりました。 | ||
|
||
- 上の例のように、 `tag` プロパティが Vue 2 のコードですでに定義されている場合、すべてが以前のように動作します | ||
- もし定義されていなくて、スタイルやその他の動作が `<span>` ルート要素の存在に依存していた場合は、 `<transition-group>` に `tag="span"` を追加するだけです | ||
|
||
```html | ||
<transition-group tag="span"> | ||
<!-- --> | ||
</transition-group> | ||
``` | ||
|
||
## 参照 | ||
|
||
- [トランジションクラスの変更](/guide/migration/transition.html) |