Getting Started with Vuetify

Installation

Install Vue.js

npm install vue

Creat a new Vue.js project using Vue CLI

vue create my-app
cd my-app

Add the Vuetify package

vue add vuetify

Check Vue.js and Vuetify version

vue --version
npm ls --depth 0 vuetify

Edit vue.config.js, configure as relative path

module.exports = {
  "transpileDependencies": [
    "vuetify"
  ],
    publicPath: './',
}

Start development server

npm run serve

Build for production

npm run build

References

Vuetify Installation
Vue.js Installation

Leave a Reply

Your email address will not be published.