Setting up the Vue project CLI - helleworldGIT/Vue-Bulma-Sass GitHub Wiki
Creating our Vue project
First of all, we'll create our project folder. It can be named, for example, 'VSB Template'.
We'll open our folder into the terminal and then, type
npm install --global vue-cli
When this is done, we'll type
vue
to check the available options. We'll go with "vue init webpack ourprojectname":
vue init webpack vsbtemplate
you'll must answer a bunch of questions based on your needs or preferences. After that, we'll perform our beloved
npm install
and...