The name of this project is Vue-Scaffold
.
This project will help anyone wanting to quickly create a new Vue project.
The three most important aspects of any Vue application will contain:
- Vue
- Vue Router
- Vuex
Vue
is the framework that you are using for the project.
Vue Router
will handle the transition to different pages of your website.
Vuex
will handle the state of your application.
This project will allow you to get up and running with a Vue application containing these important features in no time.
First you will need to clone this repo:
git clone git@github.com:shaharyar123/vue-scaffold.git
Change into the directory that you just cloned:
cd vue-scaffold
Install all the required packages
npm install
While you are building your application you will be able to compile your work and have hot-reloads. To start the application for development run this command:
npm run serve
When you have finished developing your application you can build it for production using this command:
npm run build
npm run lint