Installation
Node Version Requirement
Vue CLI requires Node.js version 8.9 or above (8.11.0+ recommended). You can manage multiple versions of Node on the same machine with nvm or nvm-windows.
Vue-cli
First, you need to install vue-cli package :
npm install -g @vue/cli
# OR
yarn global add @vue/cli
You can check you have the right version (3.x) with this command:
vue --version
Environmment settings
Create .env file by running :
$ cp .env.dist .env
Install dependencies
$ yarn install