You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 4, 2022. It is now read-only.
Is it possible to manually import a new version of angular-ui-route?
I am following the best practices of AngularJS which encourage you to use the new Components. Everything works fine, expect States. Where I need at least v1.0.0: angular-ui/ui-router#2627
How can I use this feature within ionic?
The text was updated successfully, but these errors were encountered:
A way to still use components with a old version of angular-ui-route, is by just writing the component element as the template: <picture />
This way the Controller will be attached to your defined component.
However, this might break some ionic functionality, as ionic does not allow a non-ionic element to be in between them (for example with <ion-nav-view />).
To fix this, you can simply set the wrapper of your component to be your ionic container by tag: <picture ion-view />
@gabn88 I do not remember having any problems with the other ionic elements using this structure. Maybe it has to do with something else beyond this component syntax?
Is it possible to manually import a new version of
angular-ui-route
?I am following the best practices of AngularJS which encourage you to use the new Components. Everything works fine, expect States. Where I need at least v1.0.0: angular-ui/ui-router#2627
How can I use this feature within ionic?
The text was updated successfully, but these errors were encountered: