v4.0 now available

The Intuitive Vue Framework

Build performant and production-ready full-stack web apps with confidence. Server-side rendering, auto-imports, and zero-config TypeScript support.

Everything you need

Server-Side Rendering

Deploy anywhere with hybrid rendering: SSR, SSG, ISR, and edge rendering out of the box.

📦

Auto Imports

Use composables and components without importing them. Tree-shaking included automatically.

🔷

TypeScript Ready

Zero-config TypeScript support. Auto-generated types for your components and API routes.

📁

File-based Routing

Create routes from your file structure. Dynamic routes, nested layouts, and middleware built-in.

Simple by design

Write Vue components with Composition API and enjoy automatic optimizations.

<!-- pages/index.vue -->
<script setup>
const { data } = await useFetch('/api/hello')
</script>

<template>
  <div>
    <h1>{{ data.message }}</h1>
  </div>
</template>
2M+
Weekly downloads
50K+
GitHub stars
500+
Contributors
200+
Modules

Ready to build?

Start your next project with VueStack in seconds.

npx vuestack init