transition of components
-
What components have transitions?
It does not work
https://jsfiddle.net/psprokofiev/dtg356fq/2/ -
What components have transitions?
Components with the
transition-show
andtransition-hide
props, which you can see in the API table for each component.For your fiddle, please read here: https://quasar.dev/options/animations#Installation
Notice the addition of the
animate.min.css
file at the top of the HTML, which is needed for the UMD version and notice the<transition>
component, which is Vue basics.https://vuejs.org/v2/guide/transitions.html
Scott
-
As always exhaustive! Thanks, Scott!