1.0.2 • Published 6 years ago
vuex-wait v1.0.2
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 --saveUsage
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
    }
  }
}