Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myronliu347/vuex-create-action
vuex create action util
https://github.com/myronliu347/vuex-create-action
Last synced: about 1 month ago
JSON representation
vuex create action util
- Host: GitHub
- URL: https://github.com/myronliu347/vuex-create-action
- Owner: myronliu347
- License: mit
- Created: 2017-10-26T07:08:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-26T07:21:31.000Z (over 7 years ago)
- Last Synced: 2024-11-05T15:00:54.721Z (3 months ago)
- Language: JavaScript
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vuex-create-action
[Flux Standard Action](https://github.com/acdlite/flux-standard-action) utilities for Redux.
## Installation
```bash
npm install vuex-create-action --save
```or
```
yarn add vuex-create-action
```## Usage
```javascript
import createAction from 'vuex-create-action';const actions = {
testAction: createAction('TEST_ACTION', () => { return 'test'}, () => {
return {}
});
}
```