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

vuetify-fullscreen-timer

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vuetify-fullscreen-timer

This components lets you to add a fullscreen timer

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Vuetify Fullscreen Timer

Installation

Install the package through npm

npm install vuetify-fullscreen-timer

Usage

To use the componet simply, import into the *.vue file you wan to have it in like below:

<template>
    <vuetify-fullscreen-timer :start-point="YOUR_START_POINT_AS_DATE"></vuetify-fullscreen-timer>
</template>
import VuetifyFullscreenTimer from 'vuetify-fullscreen-timer';

export default {
    components: {
        VuetifyFullscreenTimer
    }
}

Hint: Since its a normal component adding you can just give it any name you like. Look at the following example.

<template>
    <my-timer></my-timer>
</template>
export default {
    components: {
        'my-timer': VuetifyFullscreenTimer
    }
}

Properties

  • outputMode: By default is set to minutes. This property will define the output type when the user clicks stop. This property is based on the moment js library datetime units.
  • startPoint: This property is mandatory. startPoint tells the component to start counting the time difference since when. The type that this property accepts is Date.
  • title: You can give the timer a title so it shows up in big fonts to see why the timer is started. This is optional.

Keywords

FAQs

Package last updated on 25 Dec 2020

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