elk/composables/hydration.ts

9 lines
184 B
TypeScript
Raw Normal View History

export const isHydrated = ref(false)
if (!process.server) {
const nuxtApp = useNuxtApp()
nuxtApp.hooks.hookOnce('app:suspense:resolve', () => {
isHydrated.value = true
})
}