Nuxt è il meta-framework per Vue (l'equivalente di Next.js per React). Aggiunge il server-side rendering (SSR), il routing basato su file e le capacità full-stack su Vue — trasformando Vue da una libreria lato client a un framework di applicazione completo.
Perché è importante
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
