KM
KM
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
This is what I ended up doing instead. I have no idea why the page:start hook just didn't work at all.
<script setup lang="ts">
const nuxtApp = useNuxtApp()

const loading = ref(false)
loading.value = true

nuxtApp.hook('page:finish', () => {
loading.value = false
})
</script>

<template>
<div>
<div
v-if="loading"
class="fixed h-screen w-screen opacity-100 bg-black z-[999]"
>
Loading...
</div>

<div>
<h1>
{{ loading }}
</h1>
</div>

<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
<script setup lang="ts">
const nuxtApp = useNuxtApp()

const loading = ref(false)
loading.value = true

nuxtApp.hook('page:finish', () => {
loading.value = false
})
</script>

<template>
<div>
<div
v-if="loading"
class="fixed h-screen w-screen opacity-100 bg-black z-[999]"
>
Loading...
</div>

<div>
<h1>
{{ loading }}
</h1>
</div>

<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
27 replies
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
This is pretty much what i'm after but the loading hook just didn't work at all
27 replies
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
Essentially I’m trying to work out how to do this in Nuxt 3: https://debbie.codes/blog/nuxt-loading/ Where I can have a loading screen as a model with a progress bar/animation
27 replies
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
Can I use a vue file with spaLoadingTemplate or does it have to be HTML? Also is it possible to actual customise the loading screen or is it just the spinner with spaLoadingTemplate?
27 replies
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
So i'm guessing if I do ssr: false and then just use spaLoadingTemplate:
27 replies
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
Yeah i need to add one on the inital load.
27 replies
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
Can I not just use page:loading:start?
27 replies
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
I don’t but is that something I would need to do to get this working?
27 replies
NNuxt
Created by KM on 3/13/2024 in #❓・help
Nuxt 3 Loading Component?
That’s between page navigations, I want something for when the site initially loads.
27 replies