How to Create Vue Project
Assuming that you have node installed, let’s create a project directory and initialise it with npm. We’ll also need vue-cli to set up a basic webpack-simple template: mkdir my-project cd my-project npm init -y vue… How to Create Vue Project