页眉和页脚先加载

问题描述 投票:0回答:1

为什么页眉和页脚首先加载,而中间内容在延迟后加载。这是我的代码。

<template>
  <div>
    <Header />
    <nuxt />
    <upper-footer />
    <Footer />
  </div>
</template>
javascript vue.js single-page-application nuxt.js
1个回答
0
投票
在index.vue中,我删除了<no-ssr></no-ssr>,它是固定的。

之前:

<template> <no-ssr> My Content </no-ssr> </template>

之后:

<template> My Content </template>

© www.soinside.com 2019 - 2024. All rights reserved.