Auto loading data binding plugin for modernx.
npm install modernx-loading



Auto loading data binding plugin for modernx. :clap: You don't need to write showLoading and hideLoading any more.
---
``bash`
$ npm install modernx-loading --save
`javascript
import createLoading from 'modernx-loading';
const app = modernx();
app.use(createLoading(opts));
`
Then we can access loading state from store.
- opts.namespace: property key on global state, type String, Default loading
See real project usage on modernx-hackernews.
```
loading: {
global: false,
models: {
users: false,
todos: false,
...
},
}