q-transition has it been removed ?
-
The docs use it here in an example
https://quasar-framework.org/components/inner-loading.html#Basic-UsageThere is a upgrade guide mentioning there is no need for it anymore … I presume it has been removed ?
https://quasar-framework.org/guide/quasar-upgrade-guide.htmlWhen I try to register it I get
Error: Unknown import from Quasar: QTransition
-
@turigeza - Are you referencing v1.0? Or 0.17? Well, I guess it doesn’t matter.
0.17 - https://quasar-framework.org/components/transition.html
1.0 - https://v1.quasar-framework.org/options/animationsScott
-
Just use regular
<transition>
Vue component.<!-- Example with wrapping only one DOM element / component --> <transition appear enter-active-class="animated fadeIn" leave-active-class="animated fadeOut" > <!-- Wrapping only one DOM element, defined by QBtn --> <q-btn color="secondary" icon="mail" label="Email" /> </transition>
-
@s-molinari The link takes you to the right place 0.17. I will use regular <transition> Vue component as suggested by @rstoenescu. Thank you !