Create a rapid prototyping environment for modern apps and websites.
| Feature | Description |
|---|---|
| Vue | Progressive javascript framework |
| Vuex | State management |
| Fetch | Polyfill for HTTP promise-based requests |
| GraphQL | A query language for the API layer |
| Vue-Apollo | Load GraphQL data into your UI for Vue |
| Rollup | Javascript module bundler |
| Babel | Future-proof javascript compiler |
| PostCSS | Future-proof CSS with plugins |
| Element | UI framework based on Vue |
| Vue-Admin | Admin framework based on Vue & Element |
Install vue-cli globally to use the
vuecommand in your terminal
$ npm install -g vue-cli
$ vue init chrishrtmn/vue-master my-project
$ cd my-project
$ npm install
If you have Yarn installed, feel free to use
yarninstead ofnpm install
Serve with hot reload at localhost:8010
npm run dev
Test for staging
npm run test
Build for production with minification
npm run build
- To be determined
- Fork the repo
- Create your feature branch:
git checkout -b feature/my-feature - Commit your changes:
git commit -am "Add my feature" - Push to the branch:
git push origin feature/my-feature - Submit a pull request
Vue-Master © chrishrtmn
Released under the MIT License

