-
Notifications
You must be signed in to change notification settings - Fork 0
CountDown
xinwu-yang edited this page Mar 1, 2023
·
1 revision
倒计时组件,接受截止时间和格式化函数。
<template>
<count-down target="2022-12-31 23:59:59" :onEnd="handleEnd"></count-down>
</template>
<script>
export default {
methods: {
handleEnd() {
console.log('倒计时结束')
}
}
}
</script>
属性 | 说明 | 类型 | 必填 | 默认值 |
---|---|---|---|---|
format | 格式化函数 | Function | ||
target | 目标时间(截止时间) | Date | Number | DateString | ✔️ | |
onEnd | 结束时的回调函数 | Function |