Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 {}
});
}
```