How Nuxt writes nested layouts

I code like this:

// layout_1.vue
<template>
  <nuxt />
  <h2>Hello China</h2>
</template>
<script>
  export default {
    layout: "layout_0"
  };
</script>

what you mean is to add H1 hello World to H2, so you should not use layout, to use components directly

Menu