+1 vote
in VueJS by
What are the possible ways to provide transitions?

1 Answer

0 votes
by

There are many ways Vue provides transition effects when items are inserted, updated, or removed from the DOM.

Below are the possible ways,

  • Automatically apply classes for CSS transitions and animations
  • Integrate 3rd-party CSS animation libraries. For example, Animate.css
  • Use JavaScript to directly manipulate the DOM during transition hooks
  • Integrate 3rd-party JavaScript animation libraries. For example, Velocity.js
...