[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2024-06-03 06:36:24 +00:00 committed by GitHub
parent a53c5897a1
commit e0a2f219db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -119,9 +119,9 @@ const show = ref(false)
</template>
```
## Delayed Hydration
## Delayed Hydration
In real world applications, some pages may include a lot of content and a lot of components, and most of the time not all of them need to be interactive right off the bat. Having them all load eagerly can negatively impact performance and bundle size.
In real world applications, some pages may include a lot of content and a lot of components, and most of the time not all of them need to be interactive right off the bat. Having them all load eagerly can negatively impact performance and bundle size.
In order to optimize the page, you may want to delay the hydration of some components until they're visible, or until the browser is done with more important tasks for example. Nuxt has first class support for delayed hydration components and can help you reduce your boilerplate along the way.