"Sub-Router"
Do you know if it's possible to sub-routing? Let me explain:
I have my page / -> index.vue /about -> about.vue
And I'd like to create a /dashboard page with a static menu and dynamic content. Basically, my menu returns /dashboard, /dashboard/customize, /dashboard/links
I would like to know if I can make a general page with the static menu and only a
div class="content"
that shows me the dynamic depending on the route.
Thanks a lot!
(https://discord.com/channels/473401852243869706/473511881886138395/1251505172035797022)2 Replies
I think Dynamic Routing would be what you're looking for
https://nuxt.com/docs/guide/directory-structure/pages#dynamic-routes
I gona check