https://github.com/edtoken/scalable-vue-boilerplate
https://github.com/edtoken/scalable-vue-boilerplate
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/edtoken/scalable-vue-boilerplate
- Owner: edtoken
- Created: 2018-03-22T20:16:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-05T13:35:38.000Z (over 8 years ago)
- Last Synced: 2025-02-22T04:27:47.028Z (over 1 year ago)
- Language: JavaScript
- Size: 354 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Architecture
[config]{@link config} - frontend client side configuration
[store]{@link store} - store namespace
## Backend API
[api]{@link plugins.api} - api instance creator class (make requests, parse response, etc.)
### format response
```javascript
{
status: 200, // {Number} - required http status code / custom status code
data: {}, // {Object|Array} - data
message: ""// {String} - non required error/success/info message
}
```
## Links
[nuxt.js](https://github.com/nuxt/nuxt.js)
[nuxt-vue2-boillerplate](https://github.com/petervmeijgaard/vue-2-boilerplate/tree/master/src/store)
[jsdoc3](https://github.com/jsdoc3/jsdoc)
[components](https://vuetifyjs.com/ru/components/forms)
[vue-docs-info](https://github.com/vuejs/awesome-vue#docs)
[eslint-require-proptypes](https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/require-prop-types.md)
[vue-styleguidist](https://github.com/vue-styleguidist/vue-styleguidist)
[vue-styleguidist-example](https://github.com/vue-styleguidist/vue-styleguidist/tree/master/examples/nuxtjs)
[vue-styleguidist-write-docs](https://github.com/vue-styleguidist/vue-styleguidist/blob/master/docs/Documenting.md)
[nuxt-api-example](https://github.com/davidroyer/nuxt-api-example/blob/master/store/index.js)
[nuxt-auth-example](https://codeburst.io/nuxt-authentication-from-scratch-a7a024c7201b)
[fake-rest-api](https://reqres.in/)