test: wip tests for BaseTransition

This commit is contained in:
Evan You
2019-11-26 18:07:05 -05:00
parent 460b053f74
commit bb39910e8e
4 changed files with 179 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ export interface BaseTransitionProps {
onBeforeLeave?: (el: any) => void
onLeave?: (el: any, done: () => void) => void
onAfterLeave?: (el: any) => void
onLeaveCancelled?: (el: any) => void
onLeaveCancelled?: (el: any) => void // only fired in persisted mode
}
export interface TransitionHooks {