Nuxt เป็น meta-framework สำหรับ Vue (เทียบเท่า Next.js สำหรับ React) มันเพิ่ม server-side rendering (SSR), file-based routing และความสามารถ full-stack บน Vue — เปลี่ยน Vue จากไลบรารีฝั่งไคลเอนต์เป็น application framework ที่สมบูรณ์
ปัญหาหลักที่ 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
