Download and install Node.js and NPM Package in your system
https://nodejs.org/en/download/
https://docs.npmjs.com/cli/v8/configuring-npm/install
check the node and npm is installed
node js:
$ node -v
version of npm
$ npm -v
Check Vue JS Verison
$ vue --version
$ vue -V
Install the Vue CLI
https://cli.vuejs.org/
https://cli.vuejs.org/guide/installation.html
$ npm install -g @vue/cli
create a project in Vue Cli
$ vue create my-vue-app
cd my-vue-app
$ npm run serve