为什么页眉和页脚首先加载,而中间内容在延迟后加载。这是我的代码。
<template>
<div>
<Header />
<nuxt />
<upper-footer />
<Footer />
</div>
</template>
<no-ssr></no-ssr>
,它是固定的。之前:
<template>
<no-ssr>
My Content
</no-ssr>
</template>
之后:
<template> My Content </template>