diff --git a/docs/content/2.guide/1.concepts/2.vuejs-development.md b/docs/content/2.guide/1.concepts/2.vuejs-development.md index 35630e188f..c4f8c3d038 100644 --- a/docs/content/2.guide/1.concepts/2.vuejs-development.md +++ b/docs/content/2.guide/1.concepts/2.vuejs-development.md @@ -56,7 +56,7 @@ Nuxt 3 is based on Vue 3. The new major Vue version introduces several changes t ### Faster rendering -The Vue Virtual DOM (VDOM) has been rewritten from the ground up and allows for better rendering performance. On top of that, when working with compiled Single File Components, the Vue compiler can further optimize them at build time by separating static and dynamic markup. +The Vue Virtual DOM (VDOM) has been rewritten from the ground up and allows for better rendering performance. On top of that, when working with compiled Single-File Components, the Vue compiler can further optimize them at build time by separating static and dynamic markup. This results in faster first rendering (component creation) and updates, and less memory usage. In Nuxt 3, it enables faster server-side rendering as well.