Build performant and production-ready full-stack web apps with confidence. Server-side rendering, auto-imports, and zero-config TypeScript support.
Deploy anywhere with hybrid rendering: SSR, SSG, ISR, and edge rendering out of the box.
Use composables and components without importing them. Tree-shaking included automatically.
Zero-config TypeScript support. Auto-generated types for your components and API routes.
Create routes from your file structure. Dynamic routes, nested layouts, and middleware built-in.
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>
Start your next project with VueStack in seconds.
npx vuestack init