vuex-crud icon indicating copy to clipboard operation
vuex-crud copied to clipboard

Vuex-CRUD is a library for Vuex which helps you to build CRUD modules easily.

Results 32 vuex-crud issues
Sort by recently updated
recently updated
newest added

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.4.0 to 6.5.4. Commits 43ac7f2 6.5.4 f4bc72b package: bump deps 441b742 ec: validate that a point before deriving keys e71b2d9 lib: relint using eslint 8421a01 build(deps): bump...

dependencies

Bumps [axios](https://github.com/axios/axios) from 0.17.1 to 0.21.1. Release notes Sourced from axios's releases. v0.21.1 0.21.1 (December 21, 2020) Fixes and Functionality: Hotfix: Prevent SSRF (#3410) Protocol not parsed when setting proxy...

dependencies

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

Bumps [lodash.mergewith](https://github.com/lodash/lodash) from 4.6.0 to 4.6.2. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=lodash.mergewith&package-manager=npm_and_yarn&previous-version=4.6.0&new-version=4.6.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [lodash.merge](https://github.com/lodash/lodash) from 4.6.0 to 4.6.2. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=lodash.merge&package-manager=npm_and_yarn&previous-version=4.6.0&new-version=4.6.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Make onCreateStart, onCreateSuccess, onCreateError .. etc callbacks actions rather than mutations which gives the user greater flexibility. For example, they could dispatch other actions in their store.

I am trying to get a fetchSingle and getting an error when running the script. Here is my vue file contents: ``` import { mapGetters, mapActions, mapState } from 'vuex';...

The docs mention that the module can be used for urls like "/api/pages?byBook=1". How would something like this be implemented? For the `create` method, we pass in a `data` object...

I found an issue where the destroy action was passing 2 parameters, instead of the allowed 1 to the mutation destroySuccess. The result was the mutation never passed the response...

I'm mapping the 'list' of a resource via mapGetters as a computed property. How do I clear or modify the list state from a component manually? sorry if a noob...