Nested routes but not for all pages
I'm trying to have nested routes but not for al pages. I have two group of nested pages but in the same "path".
First group (with the same page) :
/:category/:resource
/:category/:resource/:main_resource_category_slug/
and I have the second group for details (it's another page) :
/:category/:resource/:main_resource_category_slug/:resource_id-:resource_slug
with nested routes like :
/:category/:resource/:main_resource_category_slug/:resource_id-:resource_slug/changelog
The first group works fine.
But the second group doesn't show the proper page and always show the wrong page. It shown only and always my first pages
---
(NuxtPage is in my resources.vue page).
How can I achieve this .
Thanks ?
1 Reply
As you can see when I'm on the last route like minecraft/resources/plugin/19-my_plugin it always show the template/page of the first group
In my case second group shouldn't be a children of my first nested groups