当前位置: 首页 > 文档资料 > VUX 中文文档 >

Clocker 组件使用教程

优质
小牛编辑
131浏览
2023-12-01

安装

import { Clocker } from 'vux'

export default {
  components: {
    Clocker
  }
}
// 在入口文件全局引入

import Vue from 'vue'
import { Clocker } from 'vux'

Vue.component('clocker', Clocker)

属性

名字类型默认值说明版本要求
timestring结束时间--
formatstring%D 天 %H 小时 %M 分 %S 秒显示格式--

事件

名字参数说明版本要求
@on-tick--时间计算时触发,但非精确每1s触发--
@on-finish--时间结束时触发--

插槽

名字说明版本要求
默认插槽若存在,则作为最终显示出来的格式模板--