DEV Community

reactwindd
reactwindd

Posted on

How to Create a Vue.js App

Open Command Prompt

Creating a Folder for Vue.js

cd desktop
mkdir "Vue JS"
cd "Vue JS"
Enter fullscreen mode Exit fullscreen mode

Creating a Vue.js App

npm init vue@latest
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

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)