nuxt-ui-pro / docs

A documentation template made with Nuxt UI Pro.
https://docs-template.nuxt.dev
134 stars 38 forks source link

Maybe you can load a bar on the page condition? #51

Closed everfu closed 6 months ago

everfu commented 6 months ago

Maybe it's better to have a loading bar at the top of the page?

app.vue

<template>
+  <NuxtLoadingIndicator />
  <div>
    <Header />

    <UMain>
      <NuxtLayout>
        <NuxtPage />
      </NuxtLayout>
    </UMain>

    <Footer />

    <ClientOnly>
      <LazyUDocsSearch :files="files" :navigation="navigation" />
    </ClientOnly>

    <UNotifications />
  </div>
</template>