vue-countdown组件
Posted dekevin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-countdown组件相关的知识,希望对你有一定的参考价值。
vue-countdown组件
Main
dist/
├── vue-countdown.js (UMD)
├── vue-countdown.min.js (UMD, compressed)
├── vue-countdown.common.js (CommonJS, default)
└── vue-countdown.esm.js (ES Module)
Install
npm install @chenfengyuan/vue-countdown vue
In browser
<script src="/path/to/vue.js"></script> <script src="/path/to/vue-countdown.js"></script> <script>Vue.component(VueCountdown.name, VueCountdown);</script>
Usage
import Vue from ‘vue‘;
import VueCountdown from ‘@chenfengyuan/vue-countdown‘;
Vue.component(VueCountdown.name, VueCountdown);
<countdown :time="2 * 24 * 60 * 60 * 1000"> <template slot-scope="props">Time Remaining:{{ props.days }} days, {{ props.hours }} hours, {{ props.minutes }} minutes, {{ props.seconds }} seconds.</template> </countdown> <!-- <span>Time Remaining:1 days, 23 hours, 59 minutes, 59 seconds.</span> -->
以上是关于vue-countdown组件的主要内容,如果未能解决你的问题,请参考以下文章