Overview
      Exposes predefined set of transitions built on top of Vue's <transition>.
    
Usage
- 
        Don't forget to define keyon child elements ofKTransitionas described in Vue documentation.
Available transitions
component-fade-out-in
 Suitable when switching between two elements/components.
        <KTransition kind="component-fade-out-in">
          <div
            v-if="isTruthy"
            key="key-1"
          >
            First component
          </div>
          <div
            v-else
            key="key-2"
          >
            Second component
          </div>
        </KTransition>
      Output:
            First component
          
component-vertical-slide-out-in
 Suitable when need to reduce vertical jarring effect during the entrance/exit of a component.
Related
Props
| Name | Description | Type | Default | Required | 
|---|---|---|---|---|
| kind | Transition kind. Can be one of:
 'component-fade-out-in'. | string | — | true | 
Slots
| Name | Description | 
|---|---|
| default | — |