Static GitHub Issues

[528] The error layout is inconsistent with the general layout structure.

prev: How to use async/await proposal?
next: [help wanted] how to make a component compatible nuxt.js SSR

Error layout:

<template>
  <section class="warpper">
    // ...
  </section>
</template>

Render results

<section class="container">
  <section class="warpper">
     // ...
  </section>
</section >

Default layout:

<template>
  <section class="warpper">
    // ...
  </section>
</template>

Render results

  <section class="warpper">
     // ...
  </section>

Error layout outer layer more than one container.

<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c458">#c458</a>)</em></sub></div>