Skip to content

Commit e3d79dc

Browse files
ChrissBottsdras
authored andcommitted
Fixed typos in <transition-group> section (#1790)
1 parent a9af183 commit e3d79dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/v2/api/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2431,11 +2431,11 @@ Used to denote a `<template>` element as a scoped slot, which is replaced by [`s
24312431
24322432
- **Usage:**
24332433
2434-
`<transition-group>` serve as transition effects for **multiple** elements/components. The `<transition-group>` renders a real DOM element. By default it renders a `<span>`, and you can configure what element is should render via the `tag` attribute.
2434+
`<transition-group>` serve as transition effects for **multiple** elements/components. The `<transition-group>` renders a real DOM element. By default it renders a `<span>`, and you can configure what element it should render via the `tag` attribute.
24352435
24362436
Note every child in a `<transition-group>` must be **uniquely keyed** for the animations to work properly.
24372437
2438-
`<transition-group>` supports moving transitions via CSS transform. When a child's position on screen has changed after an updated, it will get applied a moving CSS class (auto generated from the `name` attribute or configured with the `move-class` attribute). If the CSS `transform` property is "transition-able" when the moving class is applied, the element will be smoothly animated to its destination using the [FLIP technique](https://aerotwist.com/blog/flip-your-animations/).
2438+
`<transition-group>` supports moving transitions via CSS transform. When a child's position on screen has changed after an update, it will get applied a moving CSS class (auto generated from the `name` attribute or configured with the `move-class` attribute). If the CSS `transform` property is "transition-able" when the moving class is applied, the element will be smoothly animated to its destination using the [FLIP technique](https://aerotwist.com/blog/flip-your-animations/).
24392439
24402440
```html
24412441
<transition-group tag="ul" name="slide">

0 commit comments

Comments
 (0)