Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

maiwenan/vuex-wait

Repository files navigation

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

About

Loading indicator plugin for Vuex

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •