Full overlay with spinner for Vue
npm install vue-full-loading
Full overlay with spinner for Vue.
Perfect for performing a task in the background avoiding any other action on the screen.
Can be easily handled by your central event bus

```
npm install vue-full-loading --save
| Properties | Type | Values |
| :--------------- | :------- | :--------- |
| label | String | Default 'Loading...' |show
| | Boolean | Default false overlay
Options: true or false. |
| | Boolean | Default true overlay-class
Options: true or false. |
| | String | Default 'white-overlay' |loader-class
| | String | Default 'loader-wrapper' |event-bus
| | Object | Default null event-show
Central event Bus |
| | String | Default 'show-full-loading'|event-hide
| | String | Default 'hide-full-loading'|
Want to add your own loading content/style? No problem, you can use the available slots to do so.
Available slots:
* loading-container - This is the container for the loading text/spinnerloading-text
* - Only for the loading textloading-spinner
* - Only for the spinner
Include the component in your .vue file. ``
:label="label">
You also can manage this component by your eventBus with custom event names.
``
event-show="show-my-full-loading"
event-hide="hide-my-full-loading"
:label="label">
> Notice that if no event names passed it will use the default ones.
Match your data with your components props.
```