Open Command Prompt
Creating a Folder for Vue.js
cd desktop
mkdir "Vue JS"
cd "Vue JS"
Creating a Vue.js App
npm init vue@latest
After executing the command, it will ask you some question about the vue app.
cd <project-name (put your vue app's name)>
npm install
npm run dev
Now your have finish creating a Vue.js App. If you want to see the result, just go to http://localhost:3000
Top comments (0)