Skip to content

MeForma/vue-wait-for

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Vue Wait For

A loader manager for vuejs 3 with reactive method

Installation

# yarn
yarn add @meforma/vue-wait-for

# npm
npm install @meforma/vue-wait-for

Import

// In you main.js
// ... considering that your app creation is here
import wait from "@meforma/vue-wait-for";

createApp(App).use(wait).mount("#app");

Usage

<template>
  <div class="c-dogs">
    <div v-if="$wait.is('waiting-dogs-time')">Waiting Dogs Time...</div>
    <div v-else>Dogs are ready!!</div>
  </div>
</template>

<script>
  export default {
    name: "dogs",
    mounted() {
      this.$wait.start("waiting-dogs-time");
      let timeoute = setTimeout(() => {
        console.log(
          "time in milliseconds:",
          this.$wait.end("waiting-dogs-time"),
        );

        clearTimeout(timeoute);
        timeoute = null;
      }, 5000);
    },
  };
</script>

Methods

start(name)

Starts the wait for some word (string). You can't start the same wait more than one time, before execute end.

this.$wait.start("something");

end(name)

Kills the wait for some word (string), and returns the duration time of the wait in milliseconds.

this.$wait.end("something");

is(name)

Checks if exists a wait for some word (string).

this.$wait.is("something");

any()

Checks if exists any wait.

this.$wait.any();

clear()

Kills all waits, and returns a object with the duration time of all waits in milliseconds.

this.$wait.clear();

License

MIT License

About

A loader manager for vue3 with reactive method

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy