8000 GitHub - HELMAB/vue-loading at v1.0.5
[go: up one dir, main page]

Skip to content

HELMAB/vue-loading

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vuejs Loading Screen

Using to block whlie client processed work.

Screenshot

Screenshot

Installation

npm i --save vuejs-loading-screen

Usage

import Vue from 'vue'
import loading from 'vuejs-loading-screen'

Vue.use(loading)
<template>
    <h1>Welcome to VueLoading Screen</h1>
</template>

<script>
    methods: {
        fetchData () {
            this.$isLoading(true) // show loading screen
            this.$axios.post(url).then((response) => {
                    this.$isLoading(false) // hide loading screen
                    console.log(response)
                })
        }
    },
    mounted () {
        this.fetchData()
    }
</script>
0