App Development: trying to grow

Starting from notestutorial I wrote an app that uses the Navigation->List->Content layout. Navigation elements are displayed via Vue elements AppNavigation/AppNavigationItem, then follows the list with AppContentList/ListItem and finally the content in AppContent elements, everything fine so far.

What I have implemented up to this point will handle my customers but the app is supposed to also handle dossiers and a few other things. I would like to keep a (partially dynamic) navigation section and use the rest of the display space according to what the user selects.

Being new to Vue I am wondering how this is done architecturally such that I won’t regret it later. Actually I can’t think of a viable solution at all.

OK, I figured it out. It’s Vue Named Views as explained here.