安装
1.cnpm/npm
npm install vue2-countdown --save
2.Git 下载源码
git clone https://github.com/cgygd/vue2-countdown
使用
import CountDown from ‘vue2-countdown’
components: {
CountDown
},
data() {
return {
currentTime:0,
startTime:0,
endTime:0,
}
},
methods: {
countDownS_cb: function (x) {
console.log(x)
},
countDownE_cb: function (x) {
console.log(x)
}
}
参数解释
currentTime – 当前时间戳,如果不传,默认获取用户本地的时间(建议传服务器的当前时间)
type: Number
required : false
default : ( new Date() ).getTime()
startTime – 开始时间戳
type: Number
required : true
endTime – 结束时间戳
type: Number
required : true
tipText – 开始倒计时之前的提示文字
type: String
required : false
default : 距离开始
tipTextEnd – 开始倒计时之后的提示文字
t