Vue Tooltip - animation

Configures widget visibility animations. This object contains two fields: show and hide.

Type:

Object

Default Value: { show: { type: 'fade', from: 0, to: 1 }, hide: { type: 'fade', to: 0 } }

NOTE
To specify in which position the widget will be shown and from which it will be hidden, use the position option.

hide

An object that defines the animation options used when the widget is being hidden.

Default Value: { type: 'fade', to: 0 }

show

An object that defines the animation options used when the widget is being shown.

Default Value: { type: 'fade', from: 0, to: 1 }