Vue Loading Overlay Component
Vue.js v2.x component for full screen loading indicator
Installation
npm install vue-loading-overlay --save
yarn add vue-loading-overlay
Usage
As component
<template>
<div class="loading-parent">
<loading :active.sync="isLoading"
:can-cancel="true"
:on-cancel="whenCancelled"
:is-full-page="fullPage"></loading>
<label><input type="checkbox" v-model="fullPage">Full page?</label>
<button @click.prevent="doAjax">fetch Data</button>
</div>
</template>
<script>
import Loading from 'vue-loading-overlay';
import 'vue-loading-overlay/dist/vue-loading.min.css';
import axios from 'axios';
export default {
data() {
return {
isLoading: false,
fullPage: true
}
},
components: {
Loading
},
methods: {
doAjax() {
this.isLoading = true;
axios.post('/api').then((response)=>{
this.isLoading = false
})
},
whenCancelled() {
console.log("User cancelled the loader.")
}
}
}
</script>
<style>
.loading-parent {
position: relative;
}
</style>
As plugin
<template>
<form @submit.prevent="submit" class="loading-parent" ref="formContainer">
<label><input type="checkbox" v-model="fullPage">Full page?</label>
<button type="submit">Login</button>
</form>
</template>
<script>
import Vue from 'vue';
import Loading from 'vue-loading-overlay';
import 'vue-loading-overlay/dist/vue-loading.min.css';
Vue.use(Loading);
import axios from 'axios';
export default {
data() {
return {
fullPage: false
}
},
methods: {
submit() {
let loader = this.$loading.show({
container: this.fullPage ? null : this.$refs.formContainer
});
axios.post('/api/login').then((response)=>{
loader.hide()
})
}
}
}
</script>
<style>
.loading-parent {
position: relative;
}
</style>
Available props
The component accepts these props:
Attribute | Type | Default | Description |
---|
active | Boolean | false | Show loading by default when true , use the .sync modifier to make it two-way binding |
can-cancel | Boolean | false | Allow user to cancel by pressing escape or clicking outside |
on-cancel | Function | ()=>{} | Do something upon cancel, works in conjunction with can-cancel |
animation | String | fade | Transition name |
is-full-page | Boolean | true | When false ; limit loader to its container* |
- When
is-full-page
is set to false
, the container element should be positioned as position: relative
API methods
this.$loading.show()
let loader = this.$loading.show({
container: this.$refs.loadingContainer,
canCancel: true,
onCancel: this.yourMethodName
});
loader.hide();
Install in non-module environments (without webpack)
<script src="https://cdn.jsdelivr.net/npm/vue@2.5/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue-loading-overlay@2"></script>
<link href="https://cdn.jsdelivr.net/npm/vue-loading-overlay@2/dist/vue-loading.min.css" rel="stylesheet">
<script>
Vue.use(VueLoading)
</script>
Browser support
Run examples on your localhost
- Clone this repo
- Make sure you have node-js
>=6.10
and yarn >=1.x
pre-installed - Install dependencies -
yarn install
- Run webpack dev server -
yarn start
- This should open the demo page at
http://localhost:9000
in your default web browser
Testing
- This package is using Jest and vue-test-utils for testing.
- Tests can be found in
__test__
folder. - Execute tests with this command
yarn test
Inspired by
License
MIT License