UNPKG
@remotehq/vue-notification
Version:
latest (1.3.16-1)
1.3.16-1
Vue.js Notification Library
github.com/euvl/vue-notification
euvl/vue-notification
@remotehq/vue-notification
/
src
/
defaults.js
18 lines
(17 loc)
•
301 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export
default
{
position
: [
'top'
,
'right'
],
cssAnimation
:
'vn-fade'
,
velocityAnimation
: {
enter
:
(
el
) =>
{
var
height = el.
clientHeight
return
{
height
: [height,
0
],
opacity
: [
1
,
0
] } },
leave
: {
height
:
0
,
opacity
: [
0
,
1
] } } }