@vue 数字动态效果
效果应用做个笔记 下面是直接上代码`.
// An highlighted block
<template>
<div>
<countTo :endVal='endVal' :duration='2000' style="font-size: 32px;color: #112c78;font-family: 'impact_mt_stdregular';"></countTo>
</div>
</template>
<script>
import countTo from 'vue-count-to';
export default {
components: { countTo },
data () {
return {
endVal: 3025
};
}
}
</script>