Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@meforma/vue-wait-for

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meforma/vue-wait-for

A loader manager for vuejs 3 with reactive method

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

Keywords

FAQs

Package last updated on 13 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc