File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -44,12 +44,13 @@ export const DefaultTransition = /*#__PURE__*/ Vue.extend({
4444 } ,
4545 methods : {
4646 onAfterEnter ( el ) {
47- // Handle bug where enter-to class is not removed.
48- // Bug is related to portal-vue and transition-groups.
47+ // Work around a Vue.js bug where `*-enter-to` class is not removed
48+ // See: https://github.com/vuejs/vue/pull/7901
49+ // The `*-move` class is also stuck on elements that moved,
50+ // but there are no JavaScript hooks to handle after move
51+ // See: https://github.com/vuejs/vue/pull/7906
4952 requestAF ( ( ) => {
5053 removeClass ( el , `${ this . name } -enter-to` )
51- // The *-move class is also stuck on elements that moved,
52- // but there are no javascript hooks to handle after move.
5354 } )
5455 }
5556 } ,
You can’t perform that action at this time.
0 commit comments