Skip to content

Documentation / @ripl/vue / RiplTransitionPhases

Interface: RiplTransitionPhases ​

Defined in: adapters/vue/src/core/transition.ts:60

The set of phases a transition component contributes to its subtree.

Properties ​

PropertyTypeDescriptionDefined in
appear?booleanWhether elements present on the initial mount run their enter phase. Defaults to true.adapters/vue/src/core/transition.ts:68
enter?RiplTransitionPhase<Element<Partial<BaseState>, ElementEventMap>>Applied when an element enters the graph.adapters/vue/src/core/transition.ts:62
leave?RiplTransitionPhase<Element<Partial<BaseState>, ElementEventMap>>Applied when an element leaves the graph, before it is destroyed.adapters/vue/src/core/transition.ts:66
update?RiplTransitionPhase<Element<Partial<BaseState>, ElementEventMap>>Applied when an element's props change.adapters/vue/src/core/transition.ts:64