mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-22 01:15:25 +03:00
5 lines
140 B
TypeScript
5 lines
140 B
TypeScript
export default defineNuxtPlugin((nuxtApp) => {
|
|
nuxtApp.hooks.hookOnce('app:suspense:resolve', () => {
|
|
isHydrated.value = true
|
|
})
|
|
})
|