Which animation scheme is suitable for use in vue projects?

I want to add transition animation to the developed Vue project, with as few changes as possible, and provide cool effects. I wonder if you have any good plans?
1 transition components using Vue
2anime.js
3three.js

at present, I can think of the above three kinds.
scheme 1 has high requirements for CSS3, its ability is limited, it is not easy to use, and the cool special effects can be bothered for a long time.
scheme 2 is easy to write simple animations, while complicated ones are troublesome. I don"t know if there are ready-made special effects.
option 3 is a hold.


it's easy to use animate.css with transition


vue2-animate for Vue.js 2

npm install --save vue2-animate

then you can use it directly

                <transition enter-active-class="zoomIn">
                  <router-view/>
                </transition>

the use of Vue.js-Transition transition animation 5 (in combination with the use of animate.css animation library this series of articles.

Menu