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 ?
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 ?
