Hi everyone, I'm looking at rewriting a small business app from angular to Qwik.
I have hit a little snag, the current app has a "master-detail " secondary named route that has been implemented using an Angular "Auxiliary" Route.
The users love this functionality & I can see why. Having a secondary "master-detail" route that is tracked in the URL bar is really handy to them & increases their efficiency, especially when collaborating between each other.
https://blog.angular-university.io/angular2-router/
https://angular.io/api/router/RouterOutlet#description
Does anyone have any idea how you would achieve this in Qwik / Qwik City ?
Essentially I need:
- A primary router outlet
- A secondary router outlet
-The state of both have to be tracked in the URL bar like angular does.
Could I do it with containers ?