Vuetify is an open source MIT project that has been made possible due to the generous contributions by community backers. If you are interested in supporting this project, please consider:
- Becoming a sponsor on Patreon (supports John)
- Becoming a backer on OpenCollective (supports the Dev team)
- Become a subscriber on Tidelift
- Make a one-time payment with Paypal
- Book time with John
- Book time with the Team
Vuetify is a semantic component framework for Vue. It aims to provide clean, semantic and reusable components that make building your application a breeze.
Build amazing applications with the power of Vue, Material Design and a massive library of beautifully crafted components and features. Built according to Google's Material Design Spec, Vuetify components feature an easy-to-remember semantic design that shifts remembering complex classes and markup, to type-as-you speak properties that have simple and clear names.
Harness the power of the Vuetify community and get help 24/7 from the development team and our talented community members across the world. Become a backer and get access to dedicated support from the team.
Vuetify supports all modern browsers, including IE11 and Safari 9+ (using polyfills). From mobileπ± to laptop π» to desktop π₯, you can rest assured that your application will work as expected.
Interested in the bleeding edge? Try the vue-cli Webpack SSR (Server side rendered) template and build websites optimized for SEO.
For more information about IE11 and Safari 9+ polyfills, visit our Quick Start Guide
To view our docs π, get support π€― and the store π visit us at vuetifyjs.com.
To get started with Vuetify, you can follow one of these simple set-up instructions.
Looking to dive right in with zero setup and downtime? Check out our CodePen.io One Minute Quickstart
Setting up Vuetify with Vue's CLI is really easy π.
(Unsure of how to install Vue's CLI on your system? Check out the official Installation Instructions or our Quick Start Guide)
If you're setting up a new project, first create it using the CLI's create
command.
vue create my-app
If you are adding Vuetify to an existing Vue CLI 3 project, navigate to your project's root inside your terminal.
cd /path/to/project
Now, add Vuetify as a plugin with the CLI's add
utility.
vue add vuetify
Note that you can also find and install Vuetify through Vue's UI!
Navigate to your project folder, or create a new Vue CLI app, then run the following command.
vue ui
Once the UI launches in your browser, click the + Add plugin
button on the top right corner of your screen.
On the next screen, search for Vuetify
on the list, select it, and install it using the Install vue-cli-plugin-vuetify
button on the bottom right.
Project | Version | Description |
---|---|---|
vue-cli-plugin-vuetify | A vue-cli-3 plugin for installing and configuring Vuetify | |
vuetify-loader | A webpack plugin for treeshaking and progressive image support | |
eslint-config-vuetify | An opinionated eslint-config for Vuetify | |
vuex-cognito-module | A Vuex module for AWS Cognito |
Looking to add Vuetify to your project directly as a node module? You can easily accomplish this by using yarn
or npm
package managers π¦.
yarn add vuetify
# OR
npm install vuetify
Once you have the library installed, we need to hook it up to Vue.
Fire up your favorite IDE, and head to the file in which you are importing Vue to your project and creating your application.
import Vue from 'vue'
import Vuetify from 'vuetify' // Import Vuetify to your project
Vue.use(Vuetify) // Add Vuetify as a plugin
For including styles π¨, you can either place the below styles in your index.html
(if using the CLI) or directly at your app's entry point.
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.min.css" rel="stylesheet">
Or you can import it to your webpack entry point file. This is usually your main.js
file.
import 'https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons'
import 'vuetify/dist/vuetify.min.css'
For more information, please visit the quick-start guide.
To use Vuetify in your project by directly importing it through CDNs (Content Delivery Networks), add the following code to the <head>
of your HTML document.
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.min.css" rel="stylesheet">
Don't forget to add both Vuetify and the main Vue library to your HTML file before the closing </body>
tag.
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.js"></script>
Ask your support questions on the Vuetify Discord Community π¬.
Frequently asked questions and Gotchas on the FAQ Guide β
Developers interested in contributing should read the Code of Conduct π©βπ»π¨βπ».
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 Vuetify Discord Community.
It is important to note that for each release, the detailed changes are documented in the release notes.
You can report issues by following the Issue Template and providing a minimal reproduction with a CodePen template or a full project at CodeSandbox.
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.
We also have a list of help wanted issues that you might want to check.
This project exists thanks to all the people who contribute π!
Thank you to all our backers! π [Become a backer]
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
Vuetify is MIT licensed.