0.0.3 • Published 7 years ago

vue-fullscreen-loading v0.0.3

Weekly downloads
8
License
MIT
Repository
-
Last release
7 years ago

Coverage Status

Vue Fullscreen Loading

A simple vue component for implements Fullscreen loading.

Install

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

Usage

<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>

Props

image (String)

add your image and add to this props

show (Boolean)

Enable this component on / off by value that pass to the props