[Vuejs]-How to change vue-toasted pop-up direction

0๐Ÿ‘

โœ…

I added some @keyframes and animation, it worked.

@keyframes in {
  0% {
    opacity: 0;
    left: 100%
  }

  100% {
    opacity: 1;
    left: 0%
  }
}

.some-class{
  animation: in 300ms;
}

0๐Ÿ‘

vue-toasted v1.1.27 only supports animating upward or downward. It has no API to add new animations.

Leave a comment