diff --git a/CHANGELOG.md b/CHANGELOG.md index efeea416..e3ce9ca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Change Log +## [v0.0.4](https://github.com/Cambalab/vue-admin/tree/v0.0.4) (2019-04-02) +[Full Changelog](https://github.com/Cambalab/vue-admin/compare/v0.0.13...v0.0.4) + +**Implemented enhancements:** + +- Expose Auth action Types in the distributed version [\#107](https://github.com/Cambalab/vue-admin/issues/107) + +**Merged pull requests:** + +- Updates index.js [\#108](https://github.com/Cambalab/vue-admin/pull/108) ([sgobotta](https://github.com/sgobotta)) + +## [v0.0.13](https://github.com/Cambalab/vue-admin/tree/v0.0.13) (2019-04-02) +[Full Changelog](https://github.com/Cambalab/vue-admin/compare/v0.0.12...v0.0.13) + +## [v0.0.12](https://github.com/Cambalab/vue-admin/tree/v0.0.12) (2019-04-02) +[Full Changelog](https://github.com/Cambalab/vue-admin/compare/v0.0.3...v0.0.12) + +**Implemented enhancements:** + +- Integrate View's permissions to the route.hooks [\#96](https://github.com/Cambalab/vue-admin/issues/96) + +**Fixed bugs:** + +- Test Server: users removed from the whitelist [\#103](https://github.com/Cambalab/vue-admin/issues/103) + +**Merged pull requests:** + +- 96 integrate views permissions to the route hooks [\#106](https://github.com/Cambalab/vue-admin/pull/106) ([sgobotta](https://github.com/sgobotta)) +- Test serer: fixes lost users from the whitelist [\#104](https://github.com/Cambalab/vue-admin/pull/104) ([sgobotta](https://github.com/sgobotta)) +- 0.0.3 [\#102](https://github.com/Cambalab/vue-admin/pull/102) ([sgobotta](https://github.com/sgobotta)) + ## [v0.0.3](https://github.com/Cambalab/vue-admin/tree/v0.0.3) (2019-03-31) [Full Changelog](https://github.com/Cambalab/vue-admin/compare/v0.0.2...v0.0.3) diff --git a/Docs/Resource.md b/Docs/Resource.md index 12d903d7..87a6aa44 100644 --- a/Docs/Resource.md +++ b/Docs/Resource.md @@ -1,4 +1,4 @@ -# `` component +# `` component (outdated) A `` component maps one API endpoint to a CRUD interface. diff --git a/README.md b/README.md index f87456f9..cde67ade 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,21 @@ npm i --save vue-admin-js ``` +## Configuration + +### Auth Provider +**You will have to configure a simple adapter to communicate with your REST api.** + +**We currently provide a simple example using an axios client in the demo app. Though we intend to keep developing other kind of adapters for different node backend frameworks, they will live in separate packages.** + +**Anyways, we hope the axios example encourages you to write your own adapter until we release the adapters guide. The @va-auth module uses the vuex store and expects a user to make use of the action types it provides.** + ## Usage -***App.vue*** +***Your App.vue file*** ```vue