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/migration.md
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -661,6 +661,17 @@ Vue's transition system has changed quite drastically and now uses `<transition>
661
661
</div>
662
662
{% endraw %}
663
663
664
+
### `Vue.transition` for Reusable Transitions <sup>deprecated</sup>
665
+
666
+
With the new transition system, you can now just [use components for reusable transitions](http://rc.vuejs.org/guide/transitions.html#Reusable-Transitions).
667
+
668
+
{% raw %}
669
+
<divclass="upgrade-path">
670
+
<h4>Upgrade Path</h4>
671
+
<p>Run the <ahref="https://github.com/vuejs/vue-migration-helper">migration helper</a> on your codebase to find examples of <code>Vue.transition</code>.</p>
If you need to stagger list transitions, you can control timing by setting and accessing a `data-index` (or similar attribute) on an element. See [an example here](transitions.html#Staggering-List-Transitions).
0 commit comments