在本地主机上测试时未出现 NuxtLoadingIndicator

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

我尝试在网络设置中限制chrome,并将组件上的限制设置为0,但由于某种原因,在本地主机上以开发模式进行测试时,NuxtLoadingIndicator 没有出现。检查了文档。我错过了一些明显的东西吗?

应用程序.vue

<template>
    <div>
        <NuxtLoadingIndicator color="#67d360" :throttle="0" />
        <NuxtLayout>
            <NuxtPage />
        </NuxtLayout>
    </div>
</template>

谢谢,托马斯

nuxt3.js preloading
1个回答
0
投票

这并不是我自己问题的答案,但如果我在组件上设置 opacity:1,NuxtLoadingIndicator 就会显示在本地主机上。困惑...

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