What is vuetify?
Vuetify is a popular Vue.js component framework that provides a wide range of pre-made components and styles to help developers build visually appealing and responsive web applications quickly. It follows the Material Design guidelines and offers a rich set of features including layout systems, form controls, data tables, and more.
What are vuetify's main functionalities?
Layout System
Vuetify's layout system allows you to create responsive layouts using a grid system. The example demonstrates a simple layout with a primary and secondary content area using `v-container`, `v-row`, and `v-col` components.
<template>
<v-container>
<v-row>
<v-col cols="12" md="8">
<v-card>
<v-card-title>Primary Content</v-card-title>
<v-card-text>This is the main content area.</v-card-text>
</v-card>
</v-col>
<v-col cols="12" md="4">
<v-card>
<v-card-title>Secondary Content</v-card-title>
<v-card-text>This is the secondary content area.</v-card-text>
</v-card>
</v-col>
</v-row>
</v-container>
</template>
Form Controls
Vuetify provides a variety of form controls such as text fields, buttons, and more. The example shows a simple form with two text fields and a submit button, demonstrating how to use `v-text-field` and `v-btn` components.
<template>
<v-form>
<v-text-field label="Name" v-model="name"></v-text-field>
<v-text-field label="Email" v-model="email"></v-text-field>
<v-btn @click="submitForm">Submit</v-btn>
</v-form>
</template>
<script>
export default {
data() {
return {
name: '',
email: ''
};
},
methods: {
submitForm() {
// Form submission logic
}
}
};
</script>
Data Tables
Vuetify's data tables allow you to display tabular data with ease. The example shows a simple data table with two columns, 'Name' and 'Age', using the `v-data-table` component.
<template>
<v-data-table :headers="headers" :items="items"></v-data-table>
</template>
<script>
export default {
data() {
return {
headers: [
{ text: 'Name', value: 'name' },
{ text: 'Age', value: 'age' }
],
items: [
{ name: 'John Doe', age: 30 },
{ name: 'Jane Smith', age: 25 }
]
};
}
};
</script>
Other packages similar to vuetify
element-ui
Element UI is a Vue 2.0-based component library for developers, designers, and product managers. It provides a wide range of customizable components and follows a clean design language. Compared to Vuetify, Element UI offers a different set of design principles and components, making it a good alternative for those who prefer a different aesthetic.
buefy
Buefy is a lightweight UI component library based on Bulma, a CSS framework. It provides a set of responsive UI components for Vue.js applications. Buefy is less feature-rich compared to Vuetify but is a good choice for developers looking for a simpler and more lightweight solution.
quasar
Quasar Framework is a Vue.js-based framework that allows you to build high-performance Vue.js user interfaces in record time. It offers a wide range of components and utilities, similar to Vuetify, but also includes features for building mobile and desktop applications using the same codebase.
๐ฅ๏ธ Documentation
To check out the documentation, visit vuetifyjs.com.

โก Quick Start
Getting started with Vuetify is easy. To create a new project, choose your package manager and run one of the following commands:
Using pnpm
pnpm create vuetify
Using yarn
yarn create vuetify
Using npm
npm create vuetify@latest
Using bun
bun create vuetify
For more information on how to get started, such as using Nuxt or Laravel, check out the official Installation guide.
๐ Supporting Vuetify
Vuetify is a MIT licensed project that is developed and maintained by the Core Team. Sponsor Vuetify and receive some awesome perks and support Open Source Software at the same time! ๐
What's the difference between GitHub Sponsors and OpenCollective?
Funds donated through GitHub Sponsors directly support John Leider and the ongoing development and maintenance of Vuetify. Funds donated via Open Collective are managed with transparent expenses and will be used for compensating work and expenses for Core team members. Your name/logo will receive proper recognition and exposure by donating on either platform.
๐ Introduction
Vuetify is a no design skills required UI Library with beautifully handcrafted Vue Components. No design skills required โ everything you need to create amazing applications is at your fingertips. Vuetify has a massive API that supports any use-case. Some highlights include:
- Customizable: Extensive customization options with SASS/SCSS and Default configuration and Blueprints
- Responsive Layout: The default configuration of Vuetify components is responsive, allowing your application to adapt to different screen sizes.
- Theme System: A powerful color system that makes it easy to style your application with a consistent color palette.
- Vite Support: Smaller bundle sizes with automatic tree-shaking
- 6 months Long-term support for Major releases
- Internationalization: 42+ supported languages
Browser Support
Vuetify supports all modern browsers, including Safari 13+ (using polyfills). Components are designed for a minimum width of 320px.
๐ Vuetify Ecosystem
Resources
๐ถ๏ธย Vuetifyย Awesome
| Awesome stuff built with Vuetify. |
๐๏ธย Vuetifyย Bin
| A pastebin for saving code snippets. |
๐ซงย Vuetifyย Create
| Scaffolding tools for creating new Vuetify projects. |
๐ญย Vuetifyย Discord
| Our massive and inclusive Discord server where you can ask questions, share feedback, and connect with other Vuetify developers. |
๐งนย Vuetifyย ESLint
| An opinionated [ESLint config](https://github.com/vuetifyjs/eslint-config-vuetify) for styling and an [ESLint plugin](https://github.com/vuetifyjs/eslint-plugin-vuetify) for upgrading Vuetify version. |
๐ย Vuetifyย Issues
| A web application for reporting bugs and issues with Vuetify, Documentation, or one of our other packages. |
๐ฆย Vuetifyย Loader
| A monorepo of compiler plugins for autoloading Vuetify components and configuring styles. |
๐ง ย Vuetifyย MCP
| A Model Context Protocol server for developing with Vuetify and Agents. |
๐ฎย Vuetifyย Playground
| A Vuetify 3 playground built using vuejs/repl where you can play with our components. |
โ๏ธย Vuetifyย Snips
| Pre-built code snippets for Vuetify components that you can use in your projects |
๐ย Vuetifyย Store
| The official Vuetify Store where you can download free digital products, purchase pre-made themes, and more. |
๐โโ๏ธ Questions
For help and support questions, please use our Discord community. This issue list of this repo is exclusively for bug reports and feature requests.
๐ Issues
Use our Issue generator to report bugs and request new features.
Please make sure to read the Important Information before opening an issue. Issues not confirming to the guidelines may be closed immediately.
2๏ธโฃ Vuetify 2 Support
Vuetify 2 is now End Of Life (EOL) and is no longer supported, even for security issues. Commercial support for this version is available from our partner, HeroDevs.
๐ Changelog
Detailed changes for each release are documented in the release notes.
๐โโ๏ธ Contributing
Developers interested in contributing should read the Code of Conduct and the Contribution Guide.
Please do not ask general questions in an issue. Issues are only to report bugs, suggest
enhancements, or request new features. For general questions and discussions, ask in the community chat.
To help you get you familiar with our contribution process, we have a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started. If you have any questions, please join us on the community chat.
We also have a list of help wanted issues that you might want to check.
๐ License
Vuetify is available under the MIT software license.
Copyright (c) 2016-present Vuetify, LLC
This project exists thanks to all the people who contribute ๐!
