You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/guide/transitions.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -704,7 +704,7 @@ new Vue({
704
704
705
705
As it's transitioning between the "on" button and the "off" button, both buttons are rendered - one transitioning out while the other transitions in. This is the default behavior of `<transition>` - entering and leaving happens simultaneously.
706
706
707
-
Sometimes, this works great, like when transitioning items are absolutely positioned on top of each other:
707
+
Sometimes this works great, like when transitioning items are absolutely positioned on top of each other:
708
708
709
709
{% raw %}
710
710
<divid="no-mode-absolute-demo"class="demo">
@@ -790,7 +790,7 @@ new Vue({
790
790
</style>
791
791
{% endraw %}
792
792
793
-
Simultaneous entering and leaving transitions isn't always desirable though, so Vue offers some alternative **transition modes**:
793
+
Simultaneous entering and leaving transitions aren't always desirable though, so Vue offers some alternative **transition modes**:
794
794
795
795
-`in-out`: New element transitions in first, then when complete, the current element transitions out.
0 commit comments