NuxtN
Nuxt7mo ago
10 replies
Tiger

huge hydration mismatch, elements are being rendered in the wrong divs

Hey,
On first render it seems elements are getting swapped from the header div to the body div, like 1 level down, also some divs get duplicated.

<template>
  <FontsLoader/>
  <ResourceBar v-if="auth.loggedIn"/>
  <div class="header">
    <span class="gameTitle">TotalControl - Strategy Enhanced</span>

    <div class="headerControls">
<!--      <ActionMenu/>-->
    </div>
  </div>
  <div class="bodyWrapper">
    <div class="body">
      <AuthComponent v-if="!displayBody"/>
      <slot v-else/>
    </div>
  </div>
  <div class="footer">

  </div>
</template>
image.png
Was this page helpful?