Nuxt to meta-framework dla Vue (odpowiednik Next.js dla React). Dodaje on server-side rendering (SSR), routing oparty na plikach i pełne możliwości full-stack na bazie Vue — zamieniając Vue z biblioteki client-side w kompletny framework aplikacji.
Problem podstawowy, który rozwiązuje SSR
Plain Vue SPA: server sends an empty <div id="app"></div> + JS bundle
→ browser downloads JS, runs Vue, THEN renders content
→ slow first paint, and crawlers may see a blank page (bad SEO)
Nuxt SSR: server renders the full HTML and sends it ready-to-view
→ fast first paint, content visible immediately, great SEO
→ Vue then "hydrates" it to make it interactive
