Nuxt 3 Custom Loading Component
Is there an equivalent to Nuxt 2's custom
<Loading>
component available in Nuxt 3, with start()
. finish()
, fail()
?
https://nuxtjs.org/docs/features/loading/#using-a-custom-loading-component
I only see https://nuxt.com/docs/api/components/nuxt-loading-indicator in the Nuxt 3 docs, so I was curious if there was any internal initiative to replicate this in Nuxt 3?
The note here leads me to believe it's planned but not implemented: https://nuxt.com/docs/migration/component-options#loading
Perhaps now it would be a quick one to knock out since Nuxt 3.0.0 is out?3 Replies
There is the
NuxtLoadingIndicator
ComponentNuxt
<NuxtLoadingIndicator> · Nuxt Components
The component displays a progress bar on page navigation.
Yes, but you can't override it like you can in Nuxt 2, as far as I can tell...
That being said, maybe I can just use it as a baseline to create a custom component...