A simple vue component for implements Fullscreen loading.
You can use vue-fullscreen-loading vue-fullscreen-loading.vue an insert into your html or You can install via npm
npm install vue-fullscreen-loading
<template>
<div>
<fullscreen-loading
image="your_image_asset.png"
:show="isShow">
</fullscreen-loading
</div>
</template>
<script>
import FullscreenLoading from 'fullscreen-loading'
export default {
components: {
FullscreenLoading
},
data () {
return {
isShow: true
}
}
}
</script>
add your image and add to this props
Enable this component on / off by value that pass to the props