I have managed to implement tabs + router. Let’s say one of the tabs navigates to (as in vue example)
‘/user/foo/profile’. Here I want to router outlet User that holds the nested router outlet Profile.
I can’t figure out how to do this. Is there an example, or should I use another approach when working with Ionic?
I can try to explain my question given your example. TabOneDetail is a child route of TabOne and both have their own view. Thus, TabOneDetail and TabOne both have a header/toolbar and a content block.
In my use case I want TabOneDetail and TabOne to share the same header/toolbar, but have different content.
This can be achieved by making a shared component TabOneHeader.
Another approach is to let TabOne have a header/toolbar block with a nested route as content. TabOneDetail only has its own content and is rendered inside TabOne as a nested view.
Is the second approach possible with Ionic, or maybe it is not meant to be working that way?