You are browsing Nuxt 2 docs. Go to Nuxt 3 docs, or learn more about Nuxt 2 Long Term Support.

The loading property

The loading property gives you the option to disable the default loading progress bar on a specific page.


  • Type: Boolean (default: true)

By default, Nuxt uses its own component to show a progress bar between the routes.

You can disable or customize it globally through the Configuration's loading option , but also disable it for specific pages by setting the loading property to false :

<template>
  <h1>My page</h1>
</template>

<script>
  export default {
    loading: false
  }
</script>