Documentation / @ripl/vue / RiplTransitionProps
Interface: RiplTransitionProps ​
Defined in: adapters/vue/src/components/transition.ts:33
Props accepted by RiplTransition.
Properties ​
| Property | Type | Description | Defined in |
|---|---|---|---|
appear? | boolean | Whether descendants present on the initial mount run their enter phase. Defaults to true. | adapters/vue/src/components/transition.ts:51 |
enter? | RiplTransitionPhase | The state descendants animate from when they enter, with the options to animate by. The target is read off the element before the enter state is applied, so a property the template never bound still animates back to its inherited or default value. | adapters/vue/src/components/transition.ts:39 |
leave? | RiplTransitionPhase | The state descendants animate to when they leave, with the options to animate by. The element is destroyed once the transition finishes. | adapters/vue/src/components/transition.ts:49 |
update? | RiplTransitionPhase | The options used when a descendant's props change. Its own state, if given, is merged over the changed props to form the target. | adapters/vue/src/components/transition.ts:44 |