Create VueJS Project Using Vue UI

Introduction

In this article, we will learn how to create a VueJS project using a graphical user interface with Vue UI command.

Prerequisites

  • Basic knowledge of JavaScript and VueJS
  • NodeJS installed.
  • Text editor.
  • Vue CLI installed.

Now, we install Vue CLI. Use the following command to install Vue CLI,

npm install -g @vue/cli

Open the command prompt and enter the following command 'Vue UI',

Create VueJS Project using Vue UI

Press enter and check.

Create VueJS Project using Vue UI

This opens the Vue GUI on http://localhost:8000 on the browser.

Create VueJS Project using Vue UI

The UI shows three buttons, project, create and import, To create a new project click on Create button.

  1. Click on the Create button.
  2. Select the location where you want to create the project.
  3. Now click on the “Create a new project here” button.

Create VueJS Project using Vue UI

Enter the name of the project in the Project folder textbox and click on the Next button.

Create VueJS Project using Vue UI

Select Default present(VUE3) and click on Create project.

Create VueJS Project using Vue UI

It takes some time to create a project.

Create VueJS Project using Vue UI

Now a new project is created.

Create VueJS Project using Vue UI

Now click on the plugins tab, to install plugins and install vue router in this project.

Create VueJS Project using Vue UI

Create VueJS Project using Vue UI

The project is successfully created and Vue router also added, now go to the project location and open the project in Vs code.

Create VueJS Project using Vue UI 

Summary

In this article, we learned how to create a VueJS project from scratch with the Vue UI tool.