docs: rephrase

This commit is contained in:
Michael Brevard 2024-06-19 12:08:39 +03:00 committed by GitHub
parent 0046959bf3
commit 5cb4e41553
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ const show = ref(false)
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 as soon as the page is loaded. Having them all load eagerly can negatively impact performance and increase 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.
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 without having to write all of the boilerplate.
In order to use delayed hydration, you first need to enable it in your experimental config in `nuxt.config`