1.0.2 • Published 5 years ago

vuex-wait v1.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

vuex-wait

Adds loading state for actions to Vuex automatically. You don't need to maintain asynchronous action state any more. Inspired by dva-loading.

Install

npm install vuex-wait --save

Usage

import Vue from 'vue';
import Vuex from 'vuex';
import createLoading from 'vuex-wait';

Vue.use(Vuex);

const options = {};
const store = new Vuex.Store({
  plugins: [ createLoading(options) ]
});

Then we can access loading state from store.

Options

name

{ name: 'girl' }

In which case, loading can be accessed from store.state.girl

Defaults to loading

State Structure

{
  loading: {
    global: false,
    actions: {
      increment: false,
      incrementAsync: false
    }
  }
}

License

MIT