The AI-native headless framework
for Vue
Composable-first primitives. AI-integrated docs. Published benchmarks. Built by Vuetify.
pnpm add @vuetify/v0AI-FIRST DEVELOPMENT
Your AI assistant already knows v0
First-class MCP server. Machine-readable SKILL.md. Context-aware AI search. Multiple AI doc formats.
Vuetify MCP
One command connects Claude, Cursor, or Windsurf to every v0 API.
claude mcp add vuetify-mcp https://mcp.vuetifyjs.com/mcpSKILL.md
700+ line reference with decision trees and anti-patterns for AI coding tools.
npx skills add vuetifyjs/0AI-Ready Scaffold
Scaffold a Vue or Nuxt project with Vuetify MCP pre-configured in one command.
pnpm create vuetify0 --name=my-app --features=mcpCOMPOSABLE ARCHITECTURE
Logic without components. Components without opinions.
Use createSelection as a composable, or Selection as a compound component. Same logic, your choice.
<script setup lang="ts">
import { createSelection } from '@vuetify/v0'
import { ref } from 'vue'
const items = ref([
{ id: 1, label: 'Option A' },
{ id: 2, label: 'Option B' },
{ id: 3, label: 'Option C' },
])
const selection = createSelection({
items,
multiple: true,
})
// Pure reactive state — no components needed
selection.select(1)
selection.selected(1) // true
</script>PERFORMANCE PROVEN
We publish our benchmarks
Every composable is profiled across dataset sizes. Browse results in the interactive Benchmark Explorer.
DEVELOPER EXPERIENCE
Every tool you need, built in
We obsessed over every detail so you don't have to.
Vuetify Play
Every example opens in a live playground. No setup, no CLI.
Skill-Level Filtering
Beginner, intermediate, advanced. Docs that match your experience.
Interactive Tours
BetaStep-by-step guided learning with spotlight highlights and progress tracking.
CLI Analyze
Scans your project imports. Generates docs for only what you use.
Vuetify MCP
AI-powered API lookup, component guidance, and code generation for your editor.
Explore
14 components. 40+ composables.
Growing every release.
TRUSTED FOUNDATION
From the creators of Vuetify
40K+ stars. 2M+ weekly downloads. A decade of Vue expertise.
Built by the Vuetify team
v0 extracts Vuetify's battle-tested patterns into a headless layer. The same team that built and maintains Vue's most popular component framework.
"Vuetify 5 will be built on v0. Every pattern we've refined over a decade is becoming the foundation for the next generation."
John Leider, Creator of Vuetify
GET STARTED
Build something real in 5 minutes
pnpm add @vuetify/v0