【vue组件】 CountTo计数器

直接上干货 以下是步骤: 

1. 安装使用  npm install vue-count-to

2.在vue实例中引入组件并挂载

import countTo from 'vue-count-to';
export default {
  components: { countTo },
  data () {
    return {
      startVal: 0,
      endVal: 2017
    }
  }
}

3.引入标签

4.CountTo --  API

Property Description type default
startVal 开始值 Number 0
endVal 结束值 Number 2017
duration 持续时间,以毫秒为单位 Number 3000
autoplay 自动播放 Boolean true
decimals 要显示的小数位数 Number 0
decimal 十进制分割 String .
separator 分隔符 String ,
prefix 前缀 String ''
suffix 后缀 String ''
useEasing 使用缓和功能 Boolean true
easingFn 缓和回调 Function

 

## 注意:当autoplay:true时,它将在startVal或endVal更改时自动启动

 

Function Name Description
mountedCallback 挂载以后返回回调
start 开始计数
pause 暂停计数
reset

重置countTo

 

 

 

你可能感兴趣的:(vue)