1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-26 11:31:08 +03:00
elk/plugins/hydration.client.ts

6 lines
140 B
TypeScript
Raw Permalink Normal View History

export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.hooks.hookOnce('app:suspense:resolve', () => {
isHydrated.value = true
})
})