vue-countTo icon indicating copy to clipboard operation
vue-countTo copied to clipboard

It's a vue component that will count to a target number at a specified duration https://panjiachen.github.io/countTo/demo/

Results 37 vue-countTo issues
Sort by recently updated
recently updated
newest added

自己更新了一个基于vue3的版本,大家可以去试用下,使用方式和这个一摸一样,只是在原有的基础上进行改进(原作者的代码是相当优秀的),[点击查看](https://github.com/xiaofan9/vue-count-to)

我数据是0到0,有默认值会从高的降到0 效果很不好

报错提示: Uncaught TypeError: this.$refs.refresh1.start is not a function 引入 `import countTo from 'vue-count-to'` vue: `` script: `this.$refs.refresh1.start()` 其实是想做一个点击不管数据有无变化都会重新开始动画的效果,不知道问题出在哪里。

为什么字体颜色变为渐变色之后动画就失效了

```vue methods:{ modify() { this.val += 100 } } ``` at first time execute `modify()` it would from `0` to `100`, how could at second/more times execute `modify()`, let it...

```vue import countTo from 'vue-count-to'; export default { components: { countTo }, props:{ value: Number }, data () { return { startVal: 0, endVal: this.value } }, watch:{ value(newV, oldV){...

![image](https://user-images.githubusercontent.com/10249745/57468370-e26e3b00-72b6-11e9-925e-9f591bf2c9a9.png)

未来是否支持增加间隔性循环播放特性呢? 比如,10秒钟重新播放一次

enhancement