Lexpeartha

Results 29 comments of Lexpeartha

I am experiencing the same issue, and I am using static generation for website, with no server evolved. I still put ` ssr: false ` there, but it just works...

> ### books What are you trying to do? > > Use the `@nuxtjs/tailwindcss` module along with nuxt-ionic. > > The dev server will recognize that the vue file has...

If you're still experiencing this issue, please provide a reproduction

You could also just directly get current route (worked for me) ```ts import { useRoute } from 'vue-router' const route = useRoute() ``` One thing to point out would be...

Hm, based on documentation I think this implementation was made as replacement for `Transition`, assuming based on docs: > Ionic Animations uses the [Web Animations API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API) to build and run...

Made component that should be very similar to React's implementation. But I would appreciate feddback Also it can still use some improvements, for example it could have `playOnVisible` and play...

Worth noting than in future with more components it would make more sense to use `addComponentsDir` for auto-importing multiple utility components

Also what do you say I create 4th tab in playground showcasing all animations from the ionic docs with this component? Would that be over-kill?

I think core component is ready. Only thing left is maybe more animation examples, and updating the docs

Only thing I'm not really sure how to approach is [grouped animation](https://ionicframework.com/docs/utilities/animations#grouped-animations). It allows for using one root animation, to play children animations in parallel. However to do this, I...