Skip to main content

Command Palette

Search for a command to run...

Install Vue CLI, start a Vue Project and add Vuetify

Published
1 min read
Install Vue CLI, start a Vue Project and add Vuetify

Download and install Node js

Install vue with the following command through the terminal using the command:

npm install -g @vue/cli

Start a Vue Project

Make sure you are in the folder where you want to create the project and run in the terminal:

vue create projectname

Select your prefered preset

Vue CLI v4.5.15
? Please pick a preset: (Use arrow keys)  
> Default ([Vue 2] babel, eslint)
  Default (Vue 3) ([Vue 3] babel, eslint) 
  Manually select features

Move to the created project directory

cd projectname

To add Vuetify run

vue add vuetify

Start the test server

cd processqueue
npm run serve

More from this blog

B

Ben's Full Stack Entrepreneur Blog

12 posts

Install Vue CLI, start a Vue Project and add Vuetify