Currently, I am working on a Vue project that consists of multiple pages. While I have managed to make everything work so far, I am facing some challenges with nesting views within each other. Specifically, I have a main homepage view and a subpage view.
I have successfully created both views, but now I want to add multiple subsites to the subpage view without having to import the navigation component into each individual sub page. I am not sure how to use the subpage view as a base and extend it with other views. English is not my first language, and I may not be using the correct JS terminology to explain my issue.
I assume that I need to utilize a router-view with a different name, but I am uncertain if this is the right approach. I also question whether including multiple subsites is the best method. Here is my current directory structure: [Folder structure](https://i.sstatic.net/vSG2Q.png)
In summary, I aim to include every file in the "pages" folder into GuidePage.vue as its template. Any assistance on this matter would be greatly appreciated.