We are using the component router in an angular 1.5 webapp and require certain "landing" views (navigated to via main nav) to maintain state when you navigate away and then come back. Basically the view and component need to be hidden and then re-displayed when they come back.
This is something we've done before using ui-router and ui-router-extras. The latter has a concept of a sticky state (http://christopherthielen.github.io/ui-router-extras/#/sticky) which was very useful. I've read thru the angular 1.x and 2.x docs for the component router and cannot find any mention of a feature to cache views/components in a similar way.
Is this possible with the new component router?