Vuetify Vue CLI Plugin

2.5.8 · deprecated · verified Sun Apr 19

This package, `vue-cli-plugin-vuetify`, provides a streamlined method to integrate the Vuetify UI framework into Vue.js projects generated by Vue CLI 3. It automates critical initial setup tasks, including the configuration of webpack for features like Vuetify's a-la-carte tree-shaking, automatic hoisting of Sass variables, and updating `vue.config.js` to ensure Vuetify components are properly transpiled. The current stable version is 2.5.8, with its last significant update in late 2019. Its active development has ceased, largely mirroring the obsolescence of Vue CLI 3 itself, which reached maintenance mode and has been superseded by newer Vue CLI versions and modern build tools like Vite for Vue 3 applications. Vuetify 2, which this plugin supports, reached End of Life (EOL) on January 25th, 2025. This plugin's primary role was to simplify the onboarding process for Vuetify 2 within the specific Vue CLI 3 ecosystem, rather than offering runtime functionalities or being directly imported into application code.

Common errors

Warnings

Install

Quickstart

Demonstrates how to initialize a new Vue CLI 3 project and integrate Vuetify using the `vue add` command. This is the primary method of interacting with the plugin, which then configures the JavaScript/TypeScript project.

# Ensure Vue CLI 3 is installed globally (if not already)
# npm install -g @vue/cli # or yarn global add @vue/cli

# Create a new Vue 2 project (this plugin is primarily for Vue CLI 3 with Vue 2)
vue create my-vuetify-app --default

# Navigate into your application folder
cd my-vuetify-app

# Install the Vuetify plugin. This will prompt for configuration options.
# Choose 'Default (recommended)' for a quick start.
vue add vuetify

# Start the development server to see your Vuetify-powered app
npm run serve

view raw JSON →