mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-07 17:32:31 +00:00
* docs: implement new website theme * chore: rename dirs * chore: update build * lint fix * chore: update deps * fix: include node_modules in esbuild step * chore: update deps * Update .gitignore * chore: update theme version * up * up * fix: use svg for illustration * chore: update to 0.0.12 * chore: force parse5 resolution * stay with build * feat: always display first home section * Update yarn.lock * chore: update theme * fix lint * docs: update home title * chore: update website theme version * Update docs/content/0.index.md Co-authored-by: pooya parsa <pyapar@gmail.com> * Update docs/content/0.index.md Co-authored-by: pooya parsa <pyapar@gmail.com> * up * chore: bump theme version * up * chore: up * up up and up * chore: generate * fix: boolean value * feat: new images * update again * chore: up * ouep * chore: up Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Clément Ollivier <clement.o2p@gmail.com> Co-authored-by: pooya parsa <pyapar@gmail.com>
1.1 KiB
1.1 KiB
<NuxtLoadingIndicator>
The <NuxtLoadingIndicator>
component displays a progress bar on page navigation.
Examples
Basic Usage
Add <NuxtLoadingIndicator/>
in your app.vue
or layouts.
<template>
<NuxtLayout>
<NuxtLoadingIndicator /> <!-- here -->
<NuxtPage />
</NuxtLayout>
</template>
:button-link[Open on StackBlitz]{href="https://stackblitz.com/github/nuxt/framework/tree/main/examples/routing/pages?terminal=dev&file=/app.vue" blank}
Slots
You can pass custom HTML or components through the loading indicator's default slot.
Props
- color: The color of the loading bar.
- height: Height of the loading bar, in pixels (default
3
). - duration: Duration of the loading bar, in milliseconds (default
2000
). - throttle: Throttle the appearing and hiding, in milliseconds (default
200
).
::alert{type=info icon=🔎} This component is completely optional. To achieve full customization, you can implement your own one based on this file. ::