API: The <nuxt-child> Component
This component is used for displaying the children components in a nested route.
Example:
-| pages/
---| parent/
------| child.vue
---| parent.vue
This file tree will generate these routes:
[
{
path: '/parent',
component: '~/pages/parent.vue',
name: 'parent',
children: [
{
path: 'child',
component: '~/pages/parent/child.vue',
name: 'parent-child'
}
]
}
]
To display the child.vue
component, we have to insert <nuxt-child/>
inside pages/parent.vue
:
<template>
<div>
<h1>I am the parent view</h1>
<nuxt-child :foobar="123" />
</div>
</template>
<nuxt-child/>
accepts keep-alive
and keep-alive-props
:
<template>
<div>
<nuxt-child keep-alive :keep-alive-props="{ exclude: ['modal'] }" />
</div>
</template>
<!-- will be converted into something like this -->
<div>
<keep-alive :exclude="['modal']">
<router-view />
</keep-alive>
</div>
Child components can also receive properties like a regular Vue component.
To see an example, take a look at the nested-routes example.
Named View
Introduced with Nuxt v2.4.0
<nuxt-child/>
accepts name
prop to render named-view:
<template>
<div>
<nuxt-child name="top" />
<nuxt-child />
</div>
</template>
To see an example, take a look at the named-views example.