The loading property
Nuxt uses its own component to show a progress bar between the routes. You can customize it, disable it or create your own component.
-
Type:
BooleanorObjectorString
export default {
mounted() {
this.$nextTick(() => {
this.$nuxt.$loading.start()
setTimeout(() => this.$nuxt.$loading.finish(), 500)
})
}
}
Disable the Progress Bar
-
Type:
Boolean
nuxt.config.js
export default {
loading: false
}
Customizing the Progress Bar
-
Type:
Object
export default {
loading: {
color: 'blue',
height: '5px'
}
}
List of properties to customize the progress bar.
| Key | Type | Default | Description |
|---|---|---|---|
color |
String | 'black' |
CSS color of the progress bar |
failedColor |
String | 'red' |
CSS color of the progress bar when an error appended while rendering the route (if data or fetch sent back an error for example). |
height |
String | '2px' |
Height of the progress bar (used in the style property of the progress bar) |
throttle |
Number | 200 |
In ms, wait for the specified time before displaying the progress bar. Useful for preventing the bar from flashing. |
duration |
Number | 5000 |
In ms, the maximum duration of the progress bar, Nuxt assumes that the route will be rendered before 5 seconds. |
continuous |
Boolean | false |
Keep animating progress bar when loading takes longer than duration. |
css |
Boolean | true |
Set to false to remove default progress bar styles (and add your own). |
rtl |
Boolean | false |
Set the direction of the progress bar from right to left. |
Using a Custom Loading Component
-
Type:
String
Your component has to expose some of these methods:
| Method | Required | Description |
|---|---|---|
start() |
Required | Called when a route changes, this is where you display your component. |
finish() |
Required | Called when a route is loaded (and data fetched), this is where you hide your component. |
fail(error) |
Optional | Called when a route couldn't be loaded (failed to fetch data for example). |
increase(num) |
Optional | Called during loading the route component, num is an Integer < 100. |
components/loading.vue
<template lang="html">
<div class="loading-page" v-if="loading">
<p>Loading...</p>
</div>
</template>
<script>
export default {
data: () => ({
loading: false
}),
methods: {
start() {
this.loading = true
},
finish() {
this.loading = false
}
}
}
</script>
<style scoped>
.loading-page {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
text-align: center;
padding-top: 200px;
font-size: 30px;
font-family: sans-serif;
}
</style>
nuxt.config.js
export default {
loading: '~/components/loading.vue'
}
Edit this page on GitHub
Updated at Mon, Feb 28, 2022
Leoš Literák
Trizotti
Clément Ollivier
Sébastien Chopin
Marcello Bachechi
Rodolphe
Thomas Underwood
Shek Evgeniy
felipesuri
Lukasz Formela
Hugo Torzuoli
Sylvain Marroufin
Kareem Dabbeet
tramplay
Daniel Roe
verebelyicsaba
Adam
Nate Butler
Sandra Rodgers
Arpit Patidar
Matthew Kuehn
Steven DUBOIS
Travis Lindsey
syagawa
Maxime
かる
Al Power
Florent Delerue
quanghm
José Manuel Casani Guerra
Unai Mengual
kazuya kawaguchi
Michael Lynch
Tomachi
pooya parsa
Meir Roth
Brett
Adam Miedema
Thomas Bnt
Kazuki Furukawa
Anthony Ruelle
Christophe Carvalho Vilas-Boas
Roman Harmyder