Struggling with creating a dynamic param for my nuxt JS page's correct folder structure. The URL I'm aiming for is similar to:
The number 123 is the dynamic parameter I want to retrieve using this.$route
.
I've experimented with different folder structures like:
- pages/_landing/index.vue
- pages/landing/_index.vue
How can I make this work?
Additionally, I need the page to still load even if the parameter is not provided.