# countdown-f

> 一个用vue封装的倒计时组件

Latest version **1.1.2** (published 2022-06-23) · ISC license · 0 weekly downloads

## Install

```sh
npm install countdown-f
pnpm add countdown-f
yarn add countdown-f
bun add countdown-f
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.2 |
| Published | 2022-06-23 |
| First published | 2022-06-22 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 106 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | james_f |
| Maintainers | james_f |
| Keywords | js, vue, countDown |

## Links

- npm: https://www.npmjs.com/package/countdown-f
- npm.io page: https://npm.io/package/countdown-f

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 1.1.2 (latest) — 2022-06-23
- 1.1.1 — 2022-06-23
- 0.1.1 — 2022-06-22

## README

# countdown

## Project setup
```
npm install countdown-f //下载包文件
```

### Reference and register
```
import Countdown from "countdown-f";
import "../node_modules/countdown-f/count-down.css";
Vue.use(Countdown);
```

### use components
```
<template>
  <div id="app">
    <CountDown :time="8439" v-slot="timeObj">
      <div class="count-down">
        <div class="icon"></div>
        {{ timeObj.d }}天{{ timeObj.hh }}小时{{ timeObj.mm }}分钟{{
          timeObj.ss
        }}秒
      </div>
    </CountDown>
  </div>
</template>

<script>
export default {
  name: "App",
};
</script>
<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

```


### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

---
_Source: https://npm.io/package/countdown-f · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
