0
votes

From Nuxt documentation:

Nested Routes
Nuxt.js lets you create nested route by using the children routes of vue-router.

To define the parent component of a nested route, you need to create a Vue file with the same name as the directory which contain your children views.

Warning: don't forget to write inside the parent component (.vue file).

How can we translate technically the bold text?

1

1 Answers

1
votes

Your bold text is missing write <nuxt-child/>

So technically it means that you need to have <nuxt-child/> tag in parent component.

See this example https://github.com/nuxt/nuxt.js/tree/dev/examples/nested-routes/pages